ftpconnect.html
来自「在ftplib-3.1-1-linux.tar.gz,修改了一个BUG,和增加了」· HTML 代码 · 共 40 行
HTML
40 行
<html><head><title>FtpConnect</title></head><body><h1>FtpConnect</h1><p>Connect to an FTP server.<h2>SYNOPSIS</h2><pre>#include <ftplib.h>int FtpConnect(const char *host, netbuf **nControl);</pre><h2>PARAMETERS</h2><dl><dt><b>host</b><dd>The name of the host machine to connect to and optionally analternate port number to use.<dt><b>nControl</b><dd>The address where the pointer to the newly created control handle should bestored.</dl><h2>DESCRIPTION</h2><p>FtpConnect() establishes a connection to the FTP server on thespecified machine and returns a handle which can be used to initiate datatransfers. The host name should be specified as <host> or <host>:<port>.<host> may be either a host name or ip address. <port> may be either aservice name or a port number.<h2>RETURN VALUE</h2><p>If the connection to the remote server if successful, FtpConnect()returns 1. Otherwise, 0 is returned.</body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?