Differences From Artifact [8d15134d03]:
- File
src/exceptions/OFAddressTranslationFailedException.h
— part of check-in
[3f74e4c5df]
at
2013-06-23 14:15:57
on branch trunk
— Improve OFAddressTranslationFailedException.
This adds +[exceptionWithHost:]. This is useful when a hostname is
resolved without a socket. (user: js, size: 3319) [annotate] [blame] [check-ins using]
To Artifact [a3e30f5dc7]:
- File src/exceptions/OFAddressTranslationFailedException.h — part of check-in [3d6917fe0b] at 2013-06-28 18:43:38 on branch trunk — Include errno in headers for exceptions using it. (user: js, size: 3339) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | * the packaging of this file. * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #import "OFException.h" #ifndef OF_HAVE_SOCKETS # error No sockets available! #endif | > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | * the packaging of this file. * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include <errno.h> #import "OFException.h" #ifndef OF_HAVE_SOCKETS # error No sockets available! #endif |
︙ | ︙ |