client: don't include socket headers

The client code uses portable GLib I/O functions and doesn't need the
OS specific socket headers.
This commit is contained in:
Max Kellermann 2009-07-23 17:32:12 +02:00
parent caf48ee973
commit a0afd0369f

View File

@ -35,16 +35,6 @@
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#ifdef WIN32
#include <ws2tcpip.h>
#include <winsock.h>
#else
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#endif
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "client"