test08_cli.c

来自「minix操作系统最新版本(3.1.1)的源代码」· C语言 代码 · 共 184 行

C
184
字号
/* * Test name: test08_cli.c * * Objective: Test select on urgent data. TCP client.  * * Description: It is based on test06_cli but sends urgent data.  *  */#include <sys/types.h>#include <sys/ioctl.h>#include <sys/select.h>#include <stdio.h>#include <string.h>#include <stdlib.h>#include <stdarg.h>#include <fcntl.h>#include <errno.h>#include <unistd.h>#include <net/netlib.h>#include <net/gen/netdb.h>#include <net/gen/in.h>#include <net/gen/tcp.h>#include <net/gen/tcp_io.h>#include <net/hton.h>#define PORT 6060Lint tcp_connect(char *host, long port){  /* creates a tcp connection with specified host and port */  char *tcp_device;  struct hostent *hp;  int netfd;  nwio_tcpcl_t tcpcl;  nwio_tcpopt_t tcpopt;  nwio_tcpconf_t tcpconf;  ipaddr_t dirhost;  int tries;  int result;    /* get host address */  if ((hp = gethostbyname(host)) == (struct hostent*) NULL)   {    fprintf(stderr,"Unknown host\n");    return(-1);  }  memcpy((char *)&dirhost, (char *)hp->h_addr, hp->h_length);    /* Get default TCP device */  if (( tcp_device = getenv("TCP_DEVICE") ) == NULL)     tcp_device = TCP_DEVICE;    /* Establish TCP connection */   if ((netfd = open(tcp_device, O_RDWR)) < 0)   {    fprintf(stderr,"Error opening TCP device\n");    return -1;  }    /* Configure TCP connection */  tcpconf.nwtc_flags=NWTC_LP_SEL | NWTC_SET_RA | NWTC_SET_RP;  tcpconf.nwtc_remaddr = dirhost;  tcpconf.nwtc_remport = (tcpport_t) htons(port);    if ((result = ioctl(netfd, NWIOSTCPCONF, &tcpconf) ) <0)   {    fprintf(stderr, "Error establishing communication\n");    printf("Error:  %d\n",result);    close(netfd);    return -1;  }    /* Get configuration for TCP comm */   if ((result = ioctl(netfd, NWIOGTCPCONF, &tcpconf) ) < 0)   {    fprintf(stderr,"Error getting configuration\n");    printf("Error: %d\n", result);    close(netfd);    return -1;  }  /* Establish connection options (send URG data) */  tcpopt.nwto_flags = NWTO_SND_URG_MASK;  /* Set options for TCP comm */   if ((result = ioctl(netfd, NWIOSTCPOPT, &tcpopt) ) < 0)   {    fprintf(stderr,"Error getting configuration\n");    printf("Error: %d\n", result);    close(netfd);    return -1;  }    /* Get configuration for TCP comm */   if ((result = ioctl(netfd, NWIOGTCPOPT, &tcpopt) ) < 0)   {    fprintf(stderr,"Error getting options\n");    printf("Error: %d\n", result);    close(netfd);    return -1;  }  tcpcl.nwtcl_flags = 0;  tries = 0;   while (tries < 10) {  	if ( (result = ioctl(netfd, NWIOTCPCONN, &tcpcl)) < 0 ) {  		if (errno != EAGAIN)  		{  			fprintf(stderr, "Server is not listening\n");  			close(netfd);  			return(-1);  		}  		fprintf(stderr, "Unable to connect\n");  		sleep(1);  		tries++;  	}  	else  		break;	/* Connection */ } /* Check result value */ if (result < 0) { 	fprintf(stderr, "Error connecting\n"); 	fprintf(stderr, "Error: %d\n", result); 	printf("Number of tries: %d\n", tries); 	printf("Error: %d\n", errno); 	close(netfd); 	return -1; } return netfd;}int main(int argc,char *argv[]) {  int fd;  ssize_t data_read;  char send_buf[1024];  char recv_buf[1024];  fd_set fds_write;  int ret;  /* Check parameters */  if (argc !=2) {    fprintf(stderr,"Usage: %s host\n", argv[0]);    exit(-1);  }  if ((fd = tcp_connect(argv[1], PORT) ) < 0)     exit(-1);	  printf("Connected to server\n");  /* init fd_set */  FD_ZERO(&fds_write);  FD_SET(fd, &fds_write);  while (1)   {    /* Wait until it is possible to write with select */    ret = select(4, NULL, &fds_write, NULL, NULL);    if (ret < 0) {    	fprintf(stderr, "Error on select waiting for write: %d\n", errno);    	exit(-1);    }    if (!FD_ISSET(fd, &fds_write)) {    	fprintf(stderr, "Error: The net connection is not ready for writing (?)\n");     	exit(-1);    }        /* Get a string and send it */    printf("Ready to write...\n");    printf("Send data: ");    gets(send_buf);    write(fd, &send_buf, strlen(send_buf)+1);      /* If data sent is exit then break */    if (!strcmp(send_buf,"exit"))       break;  		    /* Get server response */    data_read = read(fd, &recv_buf, 1024);    printf("Received: %s\n\n", recv_buf);  }    /* Close UDP communication */  close(fd);}

⌨️ 快捷键说明

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