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

📄 str_cli.c

📁 linux下的聊天程序
💻 C
字号:
//#include	"unp.h"#include <stdio.h> #include <stdlib.h> #include <errno.h> #include <string.h> #include <sys/types.h> #include <netinet/in.h> #include <sys/socket.h> #include <sys/wait.h> #define SERV_PORT 9877 #define LISTENQ 1024 #define MAXLINE 4096 #define SA struct sockaddrvoidstr_cli(FILE *fp, int sockfd){	char	sendline[MAXLINE], recvline[MAXLINE];	while (fgets(sendline, MAXLINE, fp) != NULL) {		writen(sockfd, sendline, strlen(sendline));		if (readline(sockfd, recvline, MAXLINE) == 0)			err_quit("str_cli: server terminated prematurely");		fputs(recvline, stdout);	}}

⌨️ 快捷键说明

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