1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 01:27:28 +00:00

(trunk libT) some minor tr_bool correctness

This commit is contained in:
Charles Kerr 2009-02-19 21:55:00 +00:00
parent e7da7c887b
commit fcfe4e3638

View file

@ -587,7 +587,7 @@ updateFastSet( tr_peermsgs * msgs UNUSED )
*** INTEREST *** INTEREST
**/ **/
static int static tr_bool
isPieceInteresting( const tr_peermsgs * msgs, isPieceInteresting( const tr_peermsgs * msgs,
tr_piece_index_t piece ) tr_piece_index_t piece )
{ {
@ -599,7 +599,7 @@ isPieceInteresting( const tr_peermsgs * msgs,
} }
/* "interested" means we'll ask for piece data if they unchoke us */ /* "interested" means we'll ask for piece data if they unchoke us */
static int static tr_bool
isPeerInteresting( const tr_peermsgs * msgs ) isPeerInteresting( const tr_peermsgs * msgs )
{ {
tr_piece_index_t i; tr_piece_index_t i;
@ -657,7 +657,7 @@ updateInterest( tr_peermsgs * msgs )
fireNeedReq( msgs ); fireNeedReq( msgs );
} }
static int static tr_bool
popNextRequest( tr_peermsgs * msgs, popNextRequest( tr_peermsgs * msgs,
struct peer_request * setme ) struct peer_request * setme )
{ {
@ -824,7 +824,7 @@ pumpRequestQueue( tr_peermsgs * msgs, const time_t now )
fireNeedReq( msgs ); fireNeedReq( msgs );
} }
static TR_INLINE int static TR_INLINE tr_bool
requestQueueIsFull( const tr_peermsgs * msgs ) requestQueueIsFull( const tr_peermsgs * msgs )
{ {
const int req_max = msgs->maxActiveRequests; const int req_max = msgs->maxActiveRequests;
@ -1222,7 +1222,7 @@ peerMadeRequest( tr_peermsgs * msgs,
protocolSendReject( msgs, req ); protocolSendReject( msgs, req );
} }
static int static tr_bool
messageLengthIsCorrect( const tr_peermsgs * msg, uint8_t id, uint32_t len ) messageLengthIsCorrect( const tr_peermsgs * msg, uint8_t id, uint32_t len )
{ {
switch( id ) switch( id )