aboutsummaryrefslogtreecommitdiff
path: root/util.c
blob: c54572469d88fedacc534be1b2c246deba7434d5 (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 total_sent;
}