我正在学习winsock2,我用它制作了自己的聊天程序。 现在我只是想知道是否可以制作一个可以连接到FTP服务器并上传文件的程序。 我在互联网上找到了许多“教程”,但它们似乎都使用自己的库,而不是winsock2。
如何使用winsock2连接到FTP?
答案 0 :(得分:0)
阅读FTP协议。连接到FTP服务器时的所有不同之处在于,协议描述了这些信号,因为这些信号是由协议描述的。
For information about the signals and structure of messages
登录到ftp服务器的示例,假设sock
是连接到ftp服务器的ftp端口(21)的套接字。
char loginMsg[] = "USER MyName\r\nPASS MyPass\r\n";
char responce[4] = {'\0'};
send(sock, loginMsg, strlen(loginMsg), 0);
recv(sock, responce, 3, 0);
if (strcmp(responce, "230") != 0)
// Could not log in to the ftp server