| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /*
- * 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"
- void
- sink_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 */
- }
|