Changeset 3926
- Timestamp:
- Nov 22, 2007, 4:15:22 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cli/transmissioncli.1
r3467 r3926 84 84 .It Fl p, -port Ar port 85 85 Specifies an alternate port for the client to listen on. The default is 86 9090.86 51413. 87 87 .It Fl u, -upload Ar upload-rate 88 88 Specifies the maximum upload rate in kB/s, which defaults to 20. The -
trunk/doc/ipcproto.txt
r3578 r3926 35 35 An example version 1 message: 36 36 37 0000000Ed4:porti 9090ee38 {"port": 9090}37 0000000Ed4:porti51413ee 38 {"port": 51413} 39 39 40 40 For version 2 the message payload is a bencoded list containing a … … 371 371 Format: int between 0 and 65535 372 372 Replies: "succeeded", "failed", "not-supported", "bad-format" 373 Example: 4:porti 9090e374 "port", 9090373 Example: 4:porti51413e 374 "port", 51413 375 375 Details: Change the port the server uses to listen for incoming peer 376 376 connections. -
trunk/libtransmission/transmission.h
r3900 r3926 61 61 #endif 62 62 63 #define TR_DEFAULT_PORT 909063 #define TR_DEFAULT_PORT 51413 64 64 65 65 enum -
trunk/macosx/Defaults.plist
r3868 r3926 14 14 <true/> 15 15 <key>BindPort</key> 16 <integer> 9090</integer>16 <integer>51413</integer> 17 17 <key>CheckDownload</key> 18 18 <false/> -
trunk/misc/transmissioncli.zsh
r1098 r3926 6 6 '(-d --download)'{-d,--download}'[Maximum download rate (nolimit = -1) (default = -1)]:integer:' \ 7 7 '(-n --net-traversal)'{-n,--nat-traversal}'[Attempt NAT traversal using NAT-PMP or UPnP IGD]' \ 8 '(-p --port)'{-p,--port}'[Port we should listen on (default = 9090)]:integer:' \8 '(-p --port)'{-p,--port}'[Port we should listen on (default = 51413)]:integer:' \ 9 9 '(-s --scrape)'{-s,--scrape}'[Print counts of seeders/leechers and exit]' \ 10 10 '(-u --upload)'{-u,--upload}'[Maximum upload rate (nolimit = -1) (default = 20)]:integer:' \ -
trunk/wx/xmission.cc
r3426 r3926 512 512 long port; 513 513 wxString key = _T("port"); 514 if( !myConfig->Read( key, &port, 9090) )514 if( !myConfig->Read( key, &port, TR_DEFAULT_PORT ) ) 515 515 myConfig->Write( key, port ); 516 516 tr_setBindPort( handle, port );
Note: See TracChangeset
for help on using the changeset viewer.