#include "util.h" #include "debug.h" #include "conf.h" ssize_t sendall(int sockfd, char *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; }