blob: 3c51df7ce6bed07b18ac99248367be4de1eb3530 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "util.h"
#include <sys/types.h>
#include <sys/socket.h>
ssize_t sendall(int sockfd, void *buf, size_t len) {
ssize_t total_sent = 0;
ssize_t sent;
do {
if ((sent = send(sockfd, buf+total_sent, len-total_sent, 0)) == -1) {
return -1;
}
total_sent += sent;
} while (total_sent < len);
DPn("SEND",buf,len);
return 0;
}
|