compact chained_buffer::buffer_t

This commit is contained in:
Arvid Norberg 2013-10-05 04:49:00 +00:00
parent 1dd5e5128b
commit cf399a8b02
1 changed files with 1 additions and 2 deletions

View File

@ -63,9 +63,8 @@ namespace libtorrent
{
boost::function<void(char*)> free; // destructs the buffer
char* buf; // the first byte of the buffer
int size; // the total size of the buffer
char* start; // the first byte to send/receive in the buffer
int size; // the total size of the buffer
int used_size; // this is the number of bytes to send/receive
};