gnetworking.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* GIO - GLib Input, Output and Streaming Library
  2. *
  3. * Copyright (C) 2008-2011 Red Hat, Inc.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General
  16. * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef __G_NETWORKING_H__
  19. #define __G_NETWORKING_H__
  20. #include <glib.h>
  21. #ifdef G_OS_WIN32
  22. #ifndef _WIN32_WINNT
  23. #define _WIN32_WINNT 0x0501
  24. #endif
  25. #include <winsock2.h>
  26. #include <ws2tcpip.h>
  27. #include <windns.h>
  28. #include <mswsock.h>
  29. #include <iphlpapi.h>
  30. #undef interface
  31. #else /* !G_OS_WIN32 */
  32. #include <sys/types.h>
  33. #include <netdb.h>
  34. #include <netinet/in.h>
  35. #include <netinet/tcp.h>
  36. #include <resolv.h>
  37. #include <sys/socket.h>
  38. #include <sys/un.h>
  39. #include <net/if.h>
  40. #include <arpa/inet.h>
  41. #include <arpa/nameser.h>
  42. #ifndef T_SRV
  43. #define T_SRV 33
  44. #endif
  45. #ifndef _PATH_RESCONF
  46. #define _PATH_RESCONF "/etc/resolv.conf"
  47. #endif
  48. #ifndef CMSG_LEN
  49. /* CMSG_LEN and CMSG_SPACE are defined by RFC 2292, but missing on
  50. * some older platforms.
  51. */
  52. #define CMSG_LEN(len) ((size_t)CMSG_DATA((struct cmsghdr *)NULL) + (len))
  53. /* CMSG_SPACE must add at least as much padding as CMSG_NXTHDR()
  54. * adds. We overestimate here.
  55. */
  56. #define GLIB_ALIGN_TO_SIZEOF(len, obj) (((len) + sizeof (obj) - 1) & ~(sizeof (obj) - 1))
  57. #define CMSG_SPACE(len) GLIB_ALIGN_TO_SIZEOF (CMSG_LEN (len), struct cmsghdr)
  58. #endif
  59. #endif
  60. G_BEGIN_DECLS
  61. GLIB_AVAILABLE_IN_2_36
  62. void g_networking_init (void);
  63. G_END_DECLS
  64. #endif /* __G_NETWORKING_H__ */