diff options
Diffstat (limited to 'libusbmuxd/sock_stuff.c')
-rw-r--r-- | libusbmuxd/sock_stuff.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libusbmuxd/sock_stuff.c b/libusbmuxd/sock_stuff.c index 0592f6b..302b53a 100644 --- a/libusbmuxd/sock_stuff.c +++ b/libusbmuxd/sock_stuff.c @@ -192,6 +192,7 @@ int create_socket(uint16_t port) return sfd; } +#if defined(WIN32) || defined(__CYGWIN__) int connect_socket(const char *addr, uint16_t port) { int sfd = -1; @@ -251,6 +252,7 @@ int connect_socket(const char *addr, uint16_t port) return sfd; } +#endif /* WIN32 || __CYGWIN__ */ int check_fd(int fd, fd_mode fdm, unsigned int timeout) { |