Differences From Artifact [e45067b3a1]:
- File src/exceptions/OFListenFailedException.h — part of check-in [3b97fc3cd9] at 2014-01-04 00:24:08 on branch trunk — Update copyright. (user: js, size: 2005) [annotate] [blame] [check-ins using]
To Artifact [ab3ab8d43b]:
- File
src/exceptions/OFListenFailedException.h
— part of check-in
[8d2a5052fd]
at
2014-01-25 17:39:13
on branch trunk
— Generalize stream / socket related exceptions
This is in preparation for adding UDP sockets, as UDP sockets and TCP
sockets have no common superclass, as one is stream-oriented while the
other is packet-oriented.Read and write exceptions are for any object now, as they are useful for
a lot more than just for streams, while the others (bind, listen, etc.)
are for any socket now (the type is id in this case, though, as there is
no common superclass). (user: js, size: 1934) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
18 19 20 21 22 23 24 | #import "OFException.h" #ifndef OF_HAVE_SOCKETS # error No sockets available! #endif | < < | | | | | | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | #import "OFException.h" #ifndef OF_HAVE_SOCKETS # error No sockets available! #endif /*! * @brief An exception indicating that listening on the socket failed. */ @interface OFListenFailedException: OFException { id _socket; int _backLog, _errNo; } #ifdef OF_HAVE_PROPERTIES @property (readonly, retain) id socket; @property (readonly) int backLog, errNo; #endif /*! * @brief Creates a new, autoreleased listen failed exception. * * @param socket The socket which failed to listen * @param backLog The requested size of the back log * @return A new, autoreleased listen failed exception */ + (instancetype)exceptionWithSocket: (id)socket backLog: (int)backLog; /*! * @brief Initializes an already allocated listen failed exception * * @param socket The socket which failed to listen * @param backLog The requested size of the back log * @return An initialized listen failed exception */ - initWithSocket: (id)socket backLog: (int)backLog; /*! * @brief Returns the socket which failed to listen. * * @return The socket which failed to listen */ - (id)socket; /*! * @brief Returns the requested back log. * * @return The requested back log */ - (int)backLog; |
︙ | ︙ |