Differences From Artifact [e51e2f0116]:
- File
src/exceptions/OFBindFailedException.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: 2306) [annotate] [blame] [check-ins using]
To Artifact [e8ecaa5a8a]:
- File src/exceptions/OFBindFailedException.h — part of check-in [246cfe0807] at 2014-02-18 18:50:30 on branch trunk — Documentation: Show correct imports (user: js, size: 2402) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #import "OFException.h" #ifndef OF_HAVE_SOCKETS # error No sockets available! #endif /*! * @brief An exception indicating that binding a socket failed. */ @interface OFBindFailedException: OFException { id _socket; OFString *_host; uint16_t _port; | > > > | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | #import "OFException.h" #ifndef OF_HAVE_SOCKETS # error No sockets available! #endif /*! * @class OFBindFailedException \ * OFBindFailedException.h ObjFW/OFBindFailedException.h * * @brief An exception indicating that binding a socket failed. */ @interface OFBindFailedException: OFException { id _socket; OFString *_host; uint16_t _port; |
︙ | ︙ |