X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnet.c;h=246d62ca44ce31e30a5d417c20f0c7bd27649583;hp=fdedf55388ea0627e37dce6d53d52c0022484787;hb=3219be5770716bdb0c8b6e9e4c674a447c5085f2;hpb=bb8fff92e1bc594a085c2cbd12b215d334695feb diff --git a/src/net.c b/src/net.c index fdedf553..246d62ca 100644 --- a/src/net.c +++ b/src/net.c @@ -117,7 +117,7 @@ cp do_decrypt((real_packet_t*)packet, &vp, cl->key); add_mac_addresses(&vp); - if((lenin = write_n(tap_fd, &vp, vp.len + 2)) < 0) + if((lenin = write(tap_fd, &vp, vp.len + sizeof(vp.len))) < 0) syslog(LOG_ERR, "Can't write to tap device: %m"); else total_tap_out += lenin; @@ -921,9 +921,10 @@ cp */ int handle_incoming_meta_data(conn_list_t *cl) { - int x, l = sizeof(x), lenin; + int x, l = sizeof(x); unsigned char tmp[1600]; int request; + int lenin = 0; cp if(getsockopt(cl->meta_socket, SOL_SOCKET, SO_ERROR, &x, &l) < 0) { @@ -936,7 +937,7 @@ cp return -1; } - if((lenin = read(cl->meta_socket, &tmp, sizeof(tmp))) <= 0) + if(read(cl->meta_socket, &tmp, 1) <= 0) { syslog(LOG_ERR, "Receive failed: %m"); return -1; @@ -950,7 +951,7 @@ cp if(request_handlers[request] == NULL) syslog(LOG_ERR, "Unknown request %d.", request); else - if(request_handlers[request](cl, tmp, lenin) < 0) + if(request_handlers[request](cl) < 0) return -1; cp return 0; @@ -970,7 +971,7 @@ cp if(p->status.remove) continue; - if(p->status.active) + if(p->status.dataopen) if(FD_ISSET(p->socket, f)) { /* @@ -1056,7 +1057,7 @@ cp } /* - this is where it al happens... + this is where it all happens... */ void main_loop(void) {