Differences From Artifact [d6b57c8d5d]:
- File
src/exceptions/OFAddressTranslationFailedException.h
— part of check-in
[49b1989b63]
at
2014-01-26 22:38:28
on branch trunk
— Move resolving functionality to resolver.m
This is in preparation for UDP sockets, so that they can share the
resolving functionality with TCP sockets. (user: js, size: 1801) [annotate] [blame] [check-ins using]
To Artifact [08a84e3c5e]:
- File src/exceptions/OFAddressTranslationFailedException.h — part of check-in [246cfe0807] at 2014-02-18 18:50:30 on branch trunk — Documentation: Show correct imports (user: js, size: 1946) [annotate] [blame] [check-ins using]
| ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | + + + + |
#import "OFException.h"
#ifndef OF_HAVE_SOCKETS
# error No sockets available!
#endif
/*!
* @class OFAddressTranslationFailedException \
* OFAddressTranslationFailedException.h \
* ObjFW/OFAddressTranslationFailedException.h
*
* @brief An exception indicating the translation of an address failed.
*/
@interface OFAddressTranslationFailedException: OFException
{
OFString *_host;
int _errNo;
}
|
| ︙ |