|
Revision 3505, 368 bytes
(checked in by timothy, 2 years ago)
|
Adding NAT traversal support using either UPnP or NAT-PMP. There is new setting in the file transfer preferences to disable this feature. The library we used is a stripped down version of libtransmission (http://transmission.m0k.org). #949
|
| Line | |
|---|
| 1 |
#import "NSPreferences.h" |
|---|
| 2 |
|
|---|
| 3 |
@interface JVFileTransferPreferences : NSPreferencesModule { |
|---|
| 4 |
IBOutlet NSPopUpButton *saveDownloads; |
|---|
| 5 |
IBOutlet NSTextField *minRate; |
|---|
| 6 |
IBOutlet NSTextField *maxRate; |
|---|
| 7 |
IBOutlet NSButton *autoOpenPorts; |
|---|
| 8 |
} |
|---|
| 9 |
- (IBAction) changePortRange:(id) sender; |
|---|
| 10 |
- (IBAction) changeAutoOpenPorts:(id) sender; |
|---|
| 11 |
- (IBAction) changeSaveDownloads:(id) sender; |
|---|
| 12 |
@end |
|---|