32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
OFTCPSocket *_socket;
OFString *_host;
uint16_t _port;
int _errNo;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, copy, nonatomic) OFString *host;
@property (readonly) uint16_t port;
@property (readonly, retain, nonatomic) OFTCPSocket *socket;
@property (readonly) int errNo;
#endif
/*!
* @brief Creates a new, autoreleased bind failed exception.
*
* @param host The host on which binding failed
|
|
|
|
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
OFTCPSocket *_socket;
OFString *_host;
uint16_t _port;
int _errNo;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, copy) OFString *host;
@property (readonly) uint16_t port;
@property (readonly, retain) OFTCPSocket *socket;
@property (readonly) int errNo;
#endif
/*!
* @brief Creates a new, autoreleased bind failed exception.
*
* @param host The host on which binding failed
|