X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fprotocol_misc.c;h=95fc9b362dd7384f754a23d36cd21d16562ccbce;hp=43df9bbc77bff4a5d077d3d6a2820b56190acecd;hb=9de37fa18e63d71a4676e9d1c9820b09861c949b;hpb=1b30cee086148975886f961aadc26e23b1bfd6f2 diff --git a/src/protocol_misc.c b/src/protocol_misc.c index 43df9bbc..95fc9b36 100644 --- a/src/protocol_misc.c +++ b/src/protocol_misc.c @@ -116,12 +116,6 @@ bool pong_h(connection_t *c, char *request) { /* Sending and receiving packets via TCP */ bool send_tcppacket(connection_t *c, vpn_packet_t *packet) { - /* If there already is a lot of data in the outbuf buffer, discard this packet. - We use a very simple Random Early Drop algorithm. */ - - if(2.0 * c->buffer->output->off / (float)maxoutbufsize - 1 > (float)rand()/(float)RAND_MAX) - return true; - if(!send_request(c, "%d %hd", PACKET, packet->len)) return false;