VOOSMPHTTPProxy.h
1 /************************************************************************
2 VisualOn Proprietary
3 Copyright (c) 2012-2016, VisualOn, Inc. All Rights Reserved
4 
5 All data and information contained in or disclosed by this document are
6 confidential and proprietary information of VisualOn, Inc, and all rights
7 therein are expressly reserved. By accepting this material, the recipient
8 agrees that this material and the information contained therein are held
9 in confidence and in trust. The material may only be used and/or disclosed
10 as authorized in a license agreement controlling such use and disclosure.
11 ************************************************************************/
12 
13 #import <Foundation/Foundation.h>
14 #import "VOOSMPType.h"
15 
16 EXPORT_API
17 @interface VOOSMPHTTPProxy : NSObject
18 {
19  NSString * _proxyHost;
21 }
22 
26 @property (readwrite, retain, getter=getProxyHost) NSString * proxyHost;
27 
31 @property (readwrite, assign, getter=getProxyPort) int proxyPort;
32 
40 - (id) init:(NSString *)proxyHost proxyPort:(int)proxyPort;
41 
42 @end
int proxyPort
Proxy server port number.
Definition: VOOSMPHTTPProxy.h:31
Definition: VOOSMPHTTPProxy.h:17
NSString * proxyHost
Proxy server host name or IP address.
Definition: VOOSMPHTTPProxy.h:26
int _proxyPort
Definition: VOOSMPHTTPProxy.h:20
NSString * _proxyHost
Definition: VOOSMPHTTPProxy.h:19