Remove use of bufferevents and evbuffers.
[tinc] / src / protocol_misc.c
index 43df9bb..95fc9b3 100644 (file)
@@ -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;