project_files/HedgewarsMobile/Classes/ServerProtocolNetwork.h
branchios-develop
changeset 12872 00215a7ec5f5
parent 10108 c68cf030eded
equal deleted inserted replaced
12871:2c06b1120749 12872:00215a7ec5f5
    27     TCPsocket ssd;
    27     TCPsocket ssd;
    28 }
    28 }
    29 
    29 
    30 @property (assign) TCPsocket ssd;
    30 @property (assign) TCPsocket ssd;
    31 @property (assign) NSInteger serverPort;
    31 @property (assign) NSInteger serverPort;
    32 @property (nonatomic,retain) NSString *serverAddress;
    32 @property (nonatomic, strong) NSString *serverAddress;
    33 
    33 
    34 -(id) init;
    34 - (id)init;
    35 -(id) init:(NSInteger) onPort withAddress:(NSString *)address;
    35 - (id)init:(NSInteger)onPort withAddress:(NSString *)address;
    36 -(id) initOnPort:(NSInteger) port;
    36 - (id)initOnPort:(NSInteger)port;
    37 -(id) initToAddress:(NSString *)address;
    37 - (id)initToAddress:(NSString *)address;
    38 +(id) openServerConnection;
    38 +(id) openServerConnection;
    39 
    39 
    40 @end
    40 @end