SFS2X Objective-C API  1.7.13
iOS / macOS / tvOS
ConfigData.h
1 //
2 // ConfigData.h
3 // SFS2X
4 //
5 // Original development by Infosfer Game Technologies Ltd. | http://www.infosfer.com.
6 //
7 // Maintained and developed by A51 Integrated.
8 // Copyright 2012 A51 Integrated | http://a51integrated.com. All rights reserved.
9 //
10 
11 /**
12  * Stores the client configuration data loaded from an external XML file.
13  * @see [SmartFox2Client connectWithConfig:]
14  */
15 @interface ConfigData : NSObject
16 
17 @property NSString *host;
18 @property NSInteger port;
19 @property NSString *udpHost;
20 @property NSInteger udpPort;
21 @property NSString *zone;
22 @property BOOL debug;
23 @property NSInteger httpPort;
24 @property NSInteger httpsPort;
25 @property BOOL useBlueBox;
26 @property NSTimeInterval blueBoxPollingRate;
27 
28 @end
ConfigData
Definition: ConfigData.h:15