mirror of
https://github.com/transmission/transmission
synced 2025-02-20 13:16:53 +00:00
remove inaccurate comments about announce interval
This commit is contained in:
parent
5020fec22a
commit
91e4607c64
2 changed files with 3 additions and 5 deletions
|
@ -299,7 +299,7 @@
|
|||
4DFBC2DD09C0970D00D5C571 /* Torrent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Torrent.h; path = macosx/Torrent.h; sourceTree = "<group>"; };
|
||||
4DFBC2DE09C0970D00D5C571 /* Torrent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Torrent.m; path = macosx/Torrent.m; sourceTree = "<group>"; };
|
||||
8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; name = Info.plist; path = macosx/Info.plist; sourceTree = "<group>"; };
|
||||
8D1107320486CEB800E47090 /* Transmission.app */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = wrapper.application; path = Transmission.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
8D1107320486CEB800E47090 /* Transmission.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Transmission.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
A200B8390A2263BA007BBB1E /* InfoWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = InfoWindowController.h; path = macosx/InfoWindowController.h; sourceTree = "<group>"; };
|
||||
A200B83A0A2263BA007BBB1E /* InfoWindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = InfoWindowController.m; path = macosx/InfoWindowController.m; sourceTree = "<group>"; };
|
||||
A200B9630A227FD0007BBB1E /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = macosx/English.lproj/InfoWindow.nib; sourceTree = "<group>"; };
|
||||
|
|
|
@ -713,8 +713,7 @@ static void readAnswer( tr_tracker_t * tc, const char * data, int len,
|
|||
tc->lastError = 0;
|
||||
tc->allUnreachIfError = 0;
|
||||
|
||||
/* Get the tracker interval, force to between
|
||||
10 sec and 5 mins */
|
||||
/* Get the tracker interval */
|
||||
beFoo = tr_bencDictFind( &beAll, "interval" );
|
||||
if( !beFoo || TYPE_INT != beFoo->type )
|
||||
{
|
||||
|
@ -726,8 +725,7 @@ static void readAnswer( tr_tracker_t * tc, const char * data, int len,
|
|||
tr_inf( "Tracker: interval = %d seconds", tc->interval );
|
||||
tc->interval = MAX( 10, tc->interval );
|
||||
|
||||
/* Get the tracker minimum interval, force to between
|
||||
10 sec and 5 mins */
|
||||
/* Get the tracker minimum interval */
|
||||
beFoo = tr_bencDictFind( &beAll, "min interval" );
|
||||
if( beFoo && TYPE_INT == beFoo->type )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue