Lines Matching full:buff
101 char buff[ 4096 ];
218 static void control_control_write( ControlClient client, const char* buff, int len )
223 len = strlen(buff);
227 ret = sys_channel_write( client->sock, buff, len );
229 ret = socket_send( client->sock, buff, len);
235 buff += ret;
367 char* line = client->buff;
370 char* cmdend = client->buff;
390 cmdend - client->buff, client->buff );
466 client->buff[ client->buff_len ] = 0;
475 if (client->buff_len >= sizeof(client->buff)-1)
478 client->buff[ client->buff_len++ ] = ch;