tcp.c | 55 static char tcpbuf[16*1024]; variable in typeref:typename:char[] 169 cc = write(s_snd, tcpbuf + tboff, (size_t)(tblen - tboff)); 175 if (tblen >= sizeof(tcpbuf)) 176 tblen = sizeof(tcpbuf) - 1; 177 tcpbuf[tblen] = '\0'; 179 direction == 1 ? "client" : "server", tblen, tcpbuf); 264 tblen = read(s_rcv, tcpbuf, sizeof(tcpbuf));
|