⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tcp_listen.h

📁 linux下的tcp通信多线程示例,通过创建多线程来建立TCP联接.在嵌入式系统下运行
💻 H
字号:
#ifndef		_TCP_LISTEN_H_#define		_TCP_LISTEN_H_#include	<sys/types.h>	/* basic system data types */#include	<sys/socket.h>	/* basic socket definitions */#include	<sys/time.h>	/* timeval{} for select() */#include	<time.h>		/* timespec{} for pselect() */#include	<netinet/in.h>	/* sockaddr_in{} and other Internet defns */#include	<arpa/inet.h>	/* inet(3) functions */#include	<errno.h>#include	<fcntl.h>		/* for nonblocking */#include	<netdb.h>#include	<signal.h>#include	<stdio.h>#include	<stdlib.h>#include	<string.h>#include	<sys/stat.h>	/* for S_xxx file mode constants */#include	<sys/uio.h>		/* for iovec{} and readv/writev */#include	<unistd.h>#include	<sys/wait.h># include	<sys/select.h>	/* for convenience */# include	<poll.h>		/* for convenience */# include	<strings.h>		/* for convenience */# include	<sys/ioctl.h># include	<pthread.h>//#include	"addrinfo.h"int Tcp_listen(const char *host, const char *serv, socklen_t *addrlenp);#endif

⌨️ 快捷键说明

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