client.h

来自「基于TCP的控制台下局域网ftp(C/S),能够实现简单ftp命令。具有简单的客」· C头文件 代码 · 共 17 行

H
17
字号
#include <stdlib.h>
#include <sys/types.h> 
#include <sys/socket.h> 
#include <netinet/in.h> 
#include <netdb.h> 
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <sys/stat.h> 
#include <fcntl.h>
#include <termio.h>
#include <errno.h>

#define TRUE 1
#define dataLen 1024
#define CLIENT_PORT 3499

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?