Remove use of bufferevent and eventbuffers, use our own buffering instead.

This commit is contained in:
Guus Sliepen 2011-05-14 19:20:56 +02:00
parent f431fcb35f
commit cdb793f687
5 changed files with 37 additions and 43 deletions

View file

@ -119,7 +119,7 @@ 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)
if(2.0 * c->outbuf.len / (float)maxoutbufsize - 1 > (float)rand()/(float)RAND_MAX)
return true;
if(!send_request(c, "%d %hd", PACKET, packet->len))