Changeset 10083
- Timestamp:
- Feb 2, 2010, 6:27:57 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/daemon/remote.c
r10043 r10083 1054 1054 printf( "\n" ); 1055 1055 1056 printf( "TRANSFER\n" ); 1056 printf( "CONFIG\n" ); 1057 if( tr_bencDictFindStr( args, "config-dir", &str ) ) 1058 printf( " Configuration directory: %s\n", str ); 1057 1059 if( tr_bencDictFindStr( args, TR_PREFS_KEY_DOWNLOAD_DIR, &str ) ) 1058 1060 printf( " Download directory: %s\n", str ); -
trunk/doc/rpc-spec.txt
r10078 r10083 431 431 Method name: "session-set" 432 432 Request arguments: one or more of 4.1's arguments, except: "blocklist-size", 433 "rpc-version", "rpc-version-minimum", and "version" 433 "config-dir", "rpc-version", "rpc-version-minimum", 434 and "version" 434 435 Response arguments: none 435 436 … … 578 579 8 | 1.90 | yes | session-set | new arg "rename-partial-files" 579 580 | | yes | session-get | new arg "rename-partial-files" 581 | | yes | session-get | new arg "config-dir" 580 582 | | yes | torrent-add | new arg "bandwidthPriority" -
trunk/libtransmission/rpcimpl.c
r10078 r10083 1283 1283 tr_bencDictAddBool( d, TR_PREFS_KEY_BLOCKLIST_ENABLED, tr_blocklistIsEnabled( s ) ); 1284 1284 tr_bencDictAddInt ( d, "blocklist-size", tr_blocklistGetRuleCount( s ) ); 1285 tr_bencDictAddStr ( d, "config-dir", tr_sessionGetConfigDir( s ) ); 1285 1286 tr_bencDictAddStr ( d, TR_PREFS_KEY_DOWNLOAD_DIR, tr_sessionGetDownloadDir( s ) ); 1286 1287 tr_bencDictAddInt ( d, TR_PREFS_KEY_PEER_LIMIT_GLOBAL, tr_sessionGetPeerLimit( s ) );
Note: See TracChangeset
for help on using the changeset viewer.