Changeset 10752 for trunk/libtransmission/peer-mgr.c
- Timestamp:
- Jun 14, 2010, 12:48:28 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/peer-mgr.c
r10751 r10752 3288 3288 return FALSE; 3289 3289 3290 /* not if we just tried them already */3291 if( ( now - atom->time ) < getReconnectIntervalSecs( atom, now ) )3292 return FALSE;3293 3294 3290 /* not if we're both seeds */ 3295 3291 if( tr_torrentIsSeed( tor ) ) … … 3297 3293 return FALSE; 3298 3294 3295 /* not if we just tried them already */ 3296 if( ( now - atom->time ) < getReconnectIntervalSecs( atom, now ) ) 3297 return FALSE; 3298 3299 3299 /* not if they're blocklisted */ 3300 3300 if( isAtomBlocklisted( tor->session, atom ) ) … … 3321 3321 } 3322 3322 3323 static uint64_t3323 static inline uint64_t 3324 3324 addValToKey( uint64_t value, int width, uint64_t addme ) 3325 3325 {
Note: See TracChangeset
for help on using the changeset viewer.