forked from rickyzhang82/tethering
-
Notifications
You must be signed in to change notification settings - Fork 1
/
SocksProxyController.h
69 lines (58 loc) · 2.25 KB
/
SocksProxyController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
//
// SOCKS - SOCKS Proxy for iPhone
// Copyright (C) 2009 Ehud Ben-Reuven
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation version 2.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,USA.
//
// Enhanced by Daniel Sachse on 10/30/10.
// Copyright 2010 coffeecoding. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SocksProxy.h"
#include "ttdnsd.h"
//Max concurrent coonections
#define MAX_CONNECTIONS 100
@class MOGlassButton;
@interface SocksProxyController : UIViewController <SocksProxyDelegate, NSNetServiceDelegate>
{
UILabel * _portLabel;
UILabel * _addressLabel;
UILabel * _statusLabel;
UILabel * _countOpenLabel;
UILabel * _nConnectionsLabel;
MOGlassButton * _startOrStopButton;
NSNetService * _netService;
CFSocketRef _listeningSocket;
NSInteger _nConnections;
IBOutlet UITableView * proxyTableView;
@private
NSString *currentStatusText;
NSInteger currentPort;
NSString *currentAddress;
NSInteger currentOpenConnections;
NSInteger currentConnectionCount;
DNSServer * _DNSServer;
}
@property (nonatomic, copy) NSString *currentStatusText;
@property (nonatomic, assign) NSInteger currentPort;
@property (nonatomic, copy) NSString *currentAddress;
@property (nonatomic, assign) NSInteger currentOpenConnections;
@property (nonatomic, assign) NSInteger currentConnectionCount;
@property (nonatomic, assign) NSInteger uploadData;
@property (nonatomic, assign) NSInteger downloadData;
@property (nonatomic, strong) IBOutlet MOGlassButton * startOrStopButton;
- (IBAction)startOrStopAction:(id)sender;
- (void)refreshProxyTable;
@end