我写的程序从客户端读取一个简单的文本。 当telnet发送消息时,该程序运行良好,但在ftp发送消息时则不行。 此外,程序误解(?)套接字连接良好。 (见图。) 事实上,ftp客户端试图连接我的服务器,随着时间的推移,ftp客户端fali连接。我想用我的服务器程序读取ftp消息。我该怎么办?
服务器程序 -
#include <pthread.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#define MAXLINE 1024
#define PORTNUM 3600
void * thread_func(void *data)
{
int sockfd = *((int *)data);
int readn;
socklen_t addrlen;
char buf[MAXLINE];
struct sockaddr_in client_addr;
memset(buf, 0x00, MAXLINE);
addrlen = sizeof(client_addr);
getpeername(sockfd, (struct sockaddr *)&client_addr, &addrlen);
while((readn = read(sockfd, buf, MAXLINE)) > 0)
{
printf("Read Data %s(%d) : %s", inet_ntoa(client_addr.sin_addr), ntohs(client_addr.sin_port), buf);
memset(buf, 0x00, MAXLINE);
}
close(sockfd);
printf("worker thread end\n");
return 0;
}
int main(int argc, char** argv)
{
int listen_fd, client_fd;
socklen_t addrlen;
int readn;
char buf[MAXLINE];
pthread_t thread_id;
struct sockaddr_in server_addr, client_addr;
if( (listen_fd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
return 1;
memset((void*)&server_addr, 0x00, sizeof(server_addr));
server_addr.sin_family = AF_INET;
server_addr.sin_addr.s_addr = htonl(INADDR_ANY);
server_addr.sin_port = htons(PORTNUM);
if(bind(listen_fd, (struct sockaddr *)&server_addr, sizeof(server_addr)) == -1)
{
perror("bind error");
return 1;
}
if(listen(listen_fd, 5) == -1)
{
perror("listen error");
return 1;
}
while(1)
{
addrlen = sizeof(client_addr);
client_fd = accept(listen_fd, (struct sockaddr *)&client_addr, &addrlen);
if(client_fd == -1)
{
printf("accept error\n");
// return -1;
}
else
{
printf("someone comes in.\n");
fflush(stdout);
pthread_create(&thread_id, NULL, thread_func, (void *)&client_fd);
pthread_detach(thread_id);
}
}
return 0;
}
这是数字。 https://docs.google.com/document/d/1sKmk0NfTA9dL2svOPsAtaXt_bSpcT4s62yjHuKZCpIk/edit
答案 0 :(得分:0)
FTP协议有点复杂......你不能只等待客户端数据,但你必须处理协议的多个案例。
为了超越第一阶段,您必须向客户端发送220 command
(FTP横幅,告诉我们的FTP服务器是什么,并声明我们已准备好取回用户名)。
因此,尝试通过连接的套接字发送字符串"220-#\r\nMy FTP SERVER\r\n"
,看看发生了什么。
在read()
调用这些行之前添加。
sprintf(buf, "220\r\nMy FTP SERVER\r\n\r\n");
write(connected_fd, (void *) buf, strlen(buf));