20#import "OFBindSocketFailedException.h"
22OF_ASSUME_NONNULL_BEGIN
30OF_SUBCLASSING_RESTRICTED
34 unsigned char _node[IPX_NODE_LEN];
42@property (readonly, nonatomic) uint32_t network;
47@property (readonly, nonatomic) uint16_t port;
52@property (readonly, nonatomic) uint8_t packetType;
66 exceptionWithNetwork: (uint32_t)network
67 node: (const
unsigned char [_Nonnull IPX_NODE_LEN])node
69 packetType: (uint8_t)packetType
73+ (instancetype)exceptionWithSocket: (
id)socket
74 errNo: (
int)errNo OF_UNAVAILABLE;
88 initWithNetwork: (uint32_t)network
89 node: (const
unsigned char [_Nonnull IPX_NODE_LEN])node
91 packetType: (uint8_t)packetType
93 errNo: (
int)errNo OF_DESIGNATED_INITIALIZER;
95- (instancetype)initWithSocket: (
id)socket errNo: (
int)errNo OF_UNAVAILABLE;
102- (void)getNode: (
unsigned char [_Nonnull IPX_NODE_LEN])node;
An exception indicating that binding an IPX socket failed.
Definition OFBindIPXSocketFailedException.h:32
An exception indicating that binding a socket failed.
Definition OFBindSocketFailedException.h:37