Differences From Artifact [b23751c527]:
- File src/OFTCPSocket.m — part of check-in [11a9f98b7a] at 2011-02-01 21:07:49 on branch trunk — Fix lookup of service when getaddrinfo is unavailable. (user: js, size: 9534) [annotate] [blame] [check-ins using]
To Artifact [b9305562e5]:
- File src/OFTCPSocket.m — part of check-in [90893f3cbe] at 2011-02-09 18:27:46 on branch trunk — Add two missing includes. (user: js, size: 9554) [annotate] [blame] [check-ins using]
︙ | |||
22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | + | #include <unistd.h> #include <assert.h> #if !defined(HAVE_THREADSAFE_GETADDRINFO) && !defined(_WIN32) # include <netinet/in.h> # include <arpa/inet.h> # include <netdb.h> #endif #import "OFTCPSocket.h" #import "OFString.h" #import "OFExceptions.h" #import "macros.h" |
︙ |