• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/daemon/

Lines Matching defs:torrent

230     { 'a', "add",                    "Add torrent files by filename or URL", "a",  0, NULL },
244 { 'd', "downlimit", "Set the max download speed in "SPEED_K_STR" for the current torrent(s) or globally", "d", 1, "<speed>" },
245 { 'D', "no-downlimit", "Disable max download speed for the current torrent(s) or globally", "D", 0, NULL },
251 { 940, "files", "List the current torrent(s)' files", "f", 0, NULL },
254 { 'i', "info", "Show the current torrent(s)' details", "i", 0, NULL },
255 { 940, "info-files", "List the current torrent(s)' files", "if", 0, NULL },
256 { 941, "info-peers", "List the current torrent(s)' peers", "ip", 0, NULL },
257 { 942, "info-pieces", "List the current torrent(s)' pieces", "ic", 0, NULL },
258 { 943, "info-trackers", "List the current torrent(s)' trackers", "it", 0, NULL },
262 { 960, "move", "Move current torrent's data to a new folder", NULL, 1, "<path>" },
263 { 961, "find", "Tell Transmission where to find a torrent's data", NULL, 1, "<path>" },
278 { 700, "bandwidth-high", "Give this torrent first chance at available bandwidth", "Bh", 0, NULL },
279 { 701, "bandwidth-normal", "Give this torrent bandwidth left over by high priority torrents", "Bn", 0, NULL },
280 { 702, "bandwidth-low", "Give this torrent bandwidth left over by high and normal priority torrents", "Bl", 0, NULL },
281 { 600, "reannounce", "Reannounce the current torrent(s)", NULL, 0, NULL },
282 { 'r', "remove", "Remove the current torrent(s)", "r", 0, NULL },
283 { 930, "peers", "Set the maximum number of peers for the current torrent(s) or globally", "pr", 1, "<max>" },
284 { 'R', "remove-and-delete", "Remove the current torrent(s) and delete local data", NULL, 0, NULL },
285 { 800, "torrent-done-script", "Specify a script to run when a torrent finishes", NULL, 1, "<file>" },
286 { 801, "no-torrent-done-script", "Don't run a script when torrents finish", NULL, 0, NULL },
287 { 950, "seedratio", "Let the current torrent(s) seed until a specific ratio", "sr", 1, "ratio" },
288 { 951, "seedratio-default", "Let the current torrent(s) use the global seedratio settings", "srd", 0, NULL },
289 { 952, "no-seedratio", "Let the current torrent(s) seed regardless of ratio", "SR", 0, NULL },
290 { 953, "global-seedratio", "All torrents, unless overridden by a per-torrent setting, should seed until a specific ratio", "gsr", 1, "ratio" },
291 { 954, "no-global-seedratio", "All torrents, unless overridden by a per-torrent setting, should seed regardless of ratio", "GSR", 0, NULL },
292 { 710, "tracker-add", "Add a tracker to a torrent", "td", 1, "<tracker>" },
293 { 712, "tracker-remove", "Remove a tracker from a torrent", "tr", 1, "<trackerId>" },
294 { 's', "start", "Start the current torrent(s)", "s", 0, NULL },
295 { 'S', "stop", "Stop the current torrent(s)", "S", 0, NULL },
296 { 't', "torrent", "Set the current torrent(s)", "t", 1, "<torrent>" },
299 { 992, "trash-torrent", "Delete torrents after adding", NULL, 0, NULL },
300 { 993, "no-trash-torrent", "Do not delete torrents after adding", NULL, 0, NULL },
301 { 984, "honor-session", "Make the current torrent(s) honor the session limits", "hl", 0, NULL },
302 { 985, "no-honor-session", "Make the current torrent(s) not honor the session limits", "HL", 0, NULL },
303 { 'u', "uplimit", "Set the max upload speed in "SPEED_K_STR" for the current torrent(s) or globally", "u", 1, "<speed>" },
304 { 'U', "no-uplimit", "Disable max upload speed for the current torrent(s) or globally", "U", 0, NULL },
307 { 'v', "verify", "Verify the current torrent(s)", "v", 0, NULL },
309 { 'w', "download-dir", "When adding a new torrent, set its download folder. Otherwise, set the default download folder", "w", 1, "<path>" },
314 { 941, "peer-info", "List the current torrent(s)' peers", "pi", 0, NULL },
365 case 'a': /* add torrent */
371 case 't': /* set current torrent */
388 case 800: /* torrent-done-script */
389 case 801: /* no-torrent-done-script */
408 case 992: /* trash-torrent */
409 case 993: /* no-trash-torrent */
425 case 700: /* torrent priority-high */
426 case 701: /* torrent priority-normal */
427 case 702: /* torrent priority-low */
555 "No torrent specified! Please use the -t option first.\n" );
556 id = "-1"; /* no torrent will have this ID, so should be a no-op */
569 tr_bencDictAddStr( args, "ids", id ); /* it's a torrent sha hash */
999 printf( " Public torrent: %s\n", ( boolVal ? "No" : "Yes" ) );
1168 tr_benc * torrent = tr_bencListChild( torrents, i );
1169 if( tr_bencDictFindList( torrent, "peers", &peers ) ) {
1210 tr_benc * torrent = tr_bencListChild( torrents, i );
1211 if( tr_bencDictFindRaw( torrent, "pieces", &raw, &rawlen ) &&
1212 tr_bencDictFindInt( torrent, "pieceCount", &j ) ) {
1462 tr_benc * torrent = tr_bencListChild( torrents, i );
1463 if( tr_bencDictFindList( torrent, "trackerStats", &trackerStats ) ) {
1705 && tr_bencDictFindDict( b, "torrent-added", &b )
1845 tr_bencDictAddStr( *tset, "method", "torrent-set" );
1872 case 'a': /* add torrent */
1878 tr_bencDictAddStr( tadd, "method", "torrent-add" );
1910 case 't': /* set current torrent */
1950 tr_bencDictAddStr( top, "method", "torrent-get" );
2188 tr_bencDictAddStr( top, "method", "torrent-set-location" );
2215 tr_bencDictAddStr( top, "method", "torrent-start" );
2228 tr_bencDictAddStr( top, "method", "torrent-stop" );
2286 tr_bencDictAddStr( top, "method", "torrent-reannounce" );
2297 tr_bencDictAddStr( top, "method", "torrent-verify" );
2308 tr_bencDictAddStr( top, "method", "torrent-remove" );
2320 tr_bencDictAddStr( top, "method", "torrent-set-location" );