This commit is contained in:
Gabor Adam Toth 2011-05-14 18:27:42 +02:00
parent e40ab9e3b8
commit a1547d399b
2 changed files with 1 additions and 1 deletions

View File

@ -158,6 +158,7 @@ void test_server(const char* port, size_t recv_buf_size) {
close(i); // bye!
FD_CLR(i, &master); // remove from master set
} else {
// we got some data from a client
if (verbose >= 2)
printf("> %ld bytes\n", nbytes);
if (verbose >= 3)

View File

@ -77,7 +77,6 @@ void test_init (int i) {
}
int test_input (int i, char *recvbuf, size_t nbytes) {
// we got some data from a client
int j;
char *parsebuf = recvbuf - contbytes;
char sendbuf[SEND_BUF_SIZE];