soup-portability.h 435 B

1234567891011121314151617181920212223242526
  1. /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
  2. /*
  3. * Copyright (C) 2005, Novell, Inc.
  4. */
  5. #ifndef SOUP_PORTABILITY_H
  6. #define SOUP_PORTABILITY_H
  7. #include <libsoup/soup-types.h>
  8. #ifdef G_OS_WIN32
  9. #include <winsock2.h>
  10. #include <ws2tcpip.h>
  11. #else
  12. #include <netinet/in.h>
  13. #include <netinet/tcp.h>
  14. #include <arpa/inet.h>
  15. #include <sys/socket.h>
  16. #include <netdb.h>
  17. #endif
  18. #endif /* SOUP_PORTABILITY_H */