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

📄 sinktcp.c

📁 基于unix(solrais)的socket 原始代码编程。C/C++语言。SOCKET VER/BSD
💻 C
字号:
/* * Copyright (c) 1993 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	"sock.h"voidsink_tcp(int sockfd){	int		n, flags;	if (pauseinit)		sleep_us(pauseinit*1000);	for ( ; ; ) {	/* read until peer closes connection; -n opt ignored */			/* msgpeek = 0 or MSG_PEEK */		flags = msgpeek;	oncemore:		if ( (n = recv(sockfd, rbuf, readlen, flags)) < 0) {			err_sys("recv error");		} else if (n == 0) {			if (verbose)				fprintf(stderr, "connection closed by peer\n");			break;#ifdef	notdef		/* following not possible with TCP */		} else if (n != readlen)			err_quit("read returned %d, expected %d", n, readlen);#else		}#endif		if (verbose)			fprintf(stderr, "received %d bytes%s\n", n,					(flags == MSG_PEEK) ? " (MSG_PEEK)" : "");		if (pauserw)			sleep_us(pauserw*1000);		if (flags != 0) {			flags = 0;		/* no infinite loop */			goto oncemore;	/* read the message again */		}	}	if (pauseclose) {	/* pausing here puts peer into FIN_WAIT_2 */		if (verbose)				fprintf(stderr, "pausing before close\n");		sleep_us(pauseclose*1000);	}	if (close(sockfd) < 0)		err_sys("close error");		/* since SO_LINGER may be set */}

⌨️ 快捷键说明

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