tcpclitime.c

来自「tcpip协议第三卷源码,下载下来可直接编译」· C语言 代码 · 共 60 行

C
60
字号
/* * 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"intmain(int argc, char *argv[]){	struct sockaddr_in	serv;	char				request[5000], reply[5000];	int					sockfd, n, len, i;	double				rtt, minrtt;	if (argc != 2)		err_quit("usage: tcpcli <IP address of server>");	memset(&serv, sizeof(serv), 0);	serv.sin_family		 = AF_INET;	serv.sin_addr.s_addr = inet_addr(argv[1]);	serv.sin_port		 = htons(TCP_SERV_PORT);	for (len = 0; len <= 1400; len += 100) {		printf("len = %d\n", len);		minrtt = 9999999;		for (i = 0; i < 30; i++) {			if ( (sockfd = socket(PF_INET, SOCK_STREAM, 0)) < 0)				err_sys("socket error");			start_timer();			if (connect(sockfd, (SA) &serv, sizeof(serv)) < 0)				err_sys("connect error");			/* form request[] ... */			if (write(sockfd, request, len) != len)				err_sys("write error");			if (shutdown(sockfd, 1) < 0)				err_sys("shutdown error");			if ( (n = read_stream(sockfd, reply, len)) != len)				err_sys("read error, n = %d", n);			rtt = print_timer();			minrtt = min(minrtt, rtt);			/* process "n" bytes of reply[] ... */			close(sockfd);		}		printf("min rtt = %9.3f\n\n", minrtt);	}	exit(0);}

⌨️ 快捷键说明

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