TCP client failed to send string to server
问题 I am programming TCP server client. I sending the three string seperately using seperate send system call. But receiving end i getting only single string that is first string which i send. remaining two string missed. Below i given the part of my server client program. client.c char *info = "infolog"; char *size = "filesize"; char *end = "fileend"; send(client, info, strlen(info)+1, 0); send(client, size, strlen(size)+1, 0); send(client, end, strlen(end)+1, 0); server.c while ((read_size =