mirror of
https://github.com/transmission/transmission
synced 2024-12-26 09:37:56 +00:00
tweak the libevent read buffer size
This commit is contained in:
parent
a1805875ee
commit
521d32af9d
1 changed files with 4 additions and 2 deletions
|
@ -29,6 +29,8 @@
|
|||
|
||||
#define IO_TIMEOUT_SECS 8
|
||||
|
||||
#define TR_RDBUF 2048
|
||||
|
||||
/**
|
||||
***
|
||||
**/
|
||||
|
@ -143,7 +145,7 @@ tr_peerIoNew( struct tr_handle * handle,
|
|||
c );
|
||||
bufferevent_settimeout( c->bufev, IO_TIMEOUT_SECS, IO_TIMEOUT_SECS );
|
||||
bufferevent_enable( c->bufev, EV_READ|EV_WRITE );
|
||||
bufferevent_setwatermark( c->bufev, EV_READ, 0, 1024 );
|
||||
bufferevent_setwatermark( c->bufev, EV_READ, 0, TR_RDBUF );
|
||||
|
||||
return c;
|
||||
}
|
||||
|
@ -285,7 +287,7 @@ tr_peerIoReconnect( tr_peerIo * io )
|
|||
io );
|
||||
bufferevent_settimeout( io->bufev, IO_TIMEOUT_SECS, IO_TIMEOUT_SECS );
|
||||
bufferevent_enable( io->bufev, EV_READ|EV_WRITE );
|
||||
bufferevent_setwatermark( io->bufev, EV_READ, 0, 1024 );
|
||||
bufferevent_setwatermark( io->bufev, EV_READ, 0, TR_RDBUF );
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue