1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 01:03:01 +00:00

oops, this was supposed to be in 3879

This commit is contained in:
Charles Kerr 2007-11-19 05:52:05 +00:00
parent 3704854654
commit 41cee06b66

View file

@ -140,7 +140,7 @@ int tr_peerIoIsEncrypted( const tr_peerIo * io );
void tr_peerIoWriteBytes ( tr_peerIo * io,
struct evbuffer * outbuf,
const void * bytes,
int byteCount );
size_t byteCount );
void tr_peerIoWriteUint8 ( tr_peerIo * io,
struct evbuffer * outbuf,
@ -157,7 +157,7 @@ void tr_peerIoWriteUint32 ( tr_peerIo * io,
void tr_peerIoReadBytes ( tr_peerIo * io,
struct evbuffer * inbuf,
void * bytes,
int byteCount );
size_t byteCount );
void tr_peerIoReadUint8 ( tr_peerIo * io,
struct evbuffer * inbuf,
@ -173,7 +173,7 @@ void tr_peerIoReadUint32 ( tr_peerIo * io,
void tr_peerIoDrain ( tr_peerIo * io,
struct evbuffer * inbuf,
int byteCount );
size_t byteCount );
#endif