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

📄 ttcpservbig.c

📁 tcpip协议第三卷源码,下载下来可直接编译
💻 C
字号:
/* * Copyright (c) 1996 W. Richard Stevens.  All rights reserved. * Permission to use or modify this software and its documentation only for * educational purposes and without fee is hereby granted, provided that * the above copyright notice appear in all copies.  The author makes no * representations about the suitability of this software for any purpose. * It is provided "as is" without express or implied warranty. */#include	"cliserv.h"#undef	REQUEST#undef	REPLY#define	REQUEST	3300				/* max size of request, in bytes */#define	REPLY	3400				/* max size of reply, in bytes */intmain(){	struct sockaddr_in	serv, cli;	char				request[REQUEST], reply[REPLY];	int					listenfd, sockfd, n, clilen;	if ( (listenfd = socket(PF_INET, SOCK_STREAM, 0)) < 0)		err_sys("socket error");	memset(&serv, sizeof(serv), 0);	serv.sin_family      = AF_INET;	serv.sin_addr.s_addr = htonl(INADDR_ANY);	serv.sin_port        = htons(TCP_SERV_PORT);	if (bind(listenfd, (SA) &serv, sizeof(serv)) < 0)		err_sys("bind error");	if (listen(listenfd, SOMAXCONN) < 0)		err_sys("listen error");	for ( ; ; ) {		clilen = sizeof(cli);		if ( (sockfd = accept(listenfd, (SA) &cli, &clilen)) < 0)			err_sys("accept error");		if ( (n = read_stream(sockfd, request, REQUEST)) < 0)			err_sys("read error");		/* process "n" bytes of request[] ... */		if (sendto(sockfd, reply, REPLY, MSG_EOF, (SA) NULL, 0) != REPLY)			err_sys("sendto error");		close(sockfd);	}}

⌨️ 快捷键说明

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