From: Guus Sliepen Date: Thu, 27 Apr 2000 20:57:18 +0000 (+0000) Subject: Removed write_n() function. X-Git-Tag: release-1.0pre1~38 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=bb8fff92e1bc594a085c2cbd12b215d334695feb Removed write_n() function. --- diff --git a/src/net.c b/src/net.c index 564bce25..fdedf553 100644 --- a/src/net.c +++ b/src/net.c @@ -109,27 +109,6 @@ cp return 0; } -/* - write as many bytes as possible to the tap - device, possibly in multiple turns. -*/ -int write_n(int fd, void *buf, size_t len) -{ - int r, done = 0; -cp - do - { - if((r = write(fd, buf, len)) < 0) - return -1; - len -= r; - buf += r; - done += r; - } while(len > 0); - - return done; -cp -} - int xrecv(conn_list_t *cl, void *packet) { vpn_packet_t vp;