sockunion.h
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:4k
源码类别:

网络

开发平台:

Unix_Linux

  1. /*
  2.  * Socket union header.
  3.  * Copyright (c) 1997 Kunihiro Ishiguro
  4.  *
  5.  * This file is part of GNU Zebra.
  6.  *
  7.  * GNU Zebra is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * later version.
  11.  *
  12.  * GNU Zebra is distributed in the hope that it will be useful, but
  13.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with GNU Zebra; see the file COPYING.  If not, write to the Free
  19.  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  20.  * 02111-1307, USA.  
  21.  */
  22. #ifndef _ZEBRA_SOCKUNION_H
  23. #define _ZEBRA_SOCKUNION_H
  24. #if 0
  25. union sockunion {
  26.   struct sockinet {
  27.     u_char si_len;
  28.     u_char si_family;
  29.     u_short si_port;
  30.   } su_si;
  31.   struct sockaddr_in  su_sin;
  32.   struct sockaddr_in6 su_sin6;
  33. };
  34. #define su_len                su_si.si_len
  35. #define su_family     su_si.si_family
  36. #define su_port               su_si.si_port
  37. #endif /* 0 */
  38. union sockunion 
  39. {
  40.   struct sockaddr sa;
  41.   struct sockaddr_in sin;
  42. #ifdef HAVE_IPV6
  43.   struct sockaddr_in6 sin6;
  44. #endif /* HAVE_IPV6 */
  45. };
  46. enum connect_result
  47. {
  48.   connect_error,
  49.   connect_success,
  50.   connect_in_progress
  51. };
  52. /* Default address family. */
  53. #ifdef HAVE_IPV6
  54. #define AF_INET_UNION AF_INET6
  55. #else
  56. #define AF_INET_UNION AF_INET
  57. #endif
  58. /* Sockunion address string length.  Same as INET6_ADDRSTRLEN. */
  59. #define SU_ADDRSTRLEN 46
  60. /* Macro to set link local index to the IPv6 address.  For KAME IPv6
  61.    stack. */
  62. #ifdef KAME
  63. #define IN6_LINKLOCAL_IFINDEX(a)  ((a).s6_addr[2] << 8 | (a).s6_addr[3])
  64. #define SET_IN6_LINKLOCAL_IFINDEX(a, i) 
  65.   do { 
  66.     (a).s6_addr[2] = ((i) >> 8) & 0xff; 
  67.     (a).s6_addr[3] = (i) & 0xff; 
  68.   } while (0)
  69. #else
  70. #define IN6_LINKLOCAL_IFINDEX(a)
  71. #define SET_IN6_LINKLOCAL_IFINDEX(a, i)
  72. #endif /* KAME */
  73. /* shortcut macro to specify address field of struct sockaddr */
  74. #define sock2ip(X)   (((struct sockaddr_in *)(X))->sin_addr.s_addr)
  75. #ifdef HAVE_IPV6
  76. #define sock2ip6(X)  (((struct sockaddr_in6 *)(X))->sin6_addr.s6_addr)
  77. #endif /* HAVE_IPV6 */
  78. #define sockunion_family(X)  (X)->sa.sa_family
  79. /* Prototypes. */
  80. int str2sockunion (char *, union sockunion *);
  81. const char *sockunion2str (union sockunion *, char *, size_t);
  82. int sockunion_cmp (union sockunion *, union sockunion *);
  83. int sockunion_same (union sockunion *, union sockunion *);
  84. char *sockunion_su2str (union sockunion *su);
  85. union sockunion *sockunion_str2su (char *str);
  86. struct in_addr sockunion_get_in_addr (union sockunion *su);
  87. int sockunion_accept (int sock, union sockunion *);
  88. int sockunion_stream_socket (union sockunion *);
  89. int sockopt_reuseaddr (int);
  90. int sockopt_reuseport (int);
  91. int sockunion_bind (int sock, union sockunion *, unsigned short, union sockunion *);
  92. int sockopt_ttl (int family, int sock, int ttl);
  93. int sockunion_socket (union sockunion *su);
  94. const char *inet_sutop (union sockunion *su, char *str);
  95. enum connect_result
  96. sockunion_connect (int fd, union sockunion *su, unsigned short port, unsigned int);
  97. union sockunion *sockunion_getsockname (int);
  98. union sockunion *sockunion_getpeername (int);
  99. union sockunion *sockunion_dup (union sockunion *);
  100. void sockunion_free (union sockunion *);
  101. #ifndef HAVE_INET_NTOP
  102. const char *
  103. inet_ntop (int family, const void *addrptr, char *strptr, size_t len);
  104. #endif /* HAVE_INET_NTOP */
  105. #ifndef HAVE_INET_PTON
  106. int
  107. inet_pton (int family, const char *strptr, void *addrptr);
  108. #endif /* HAVE_INET_PTON */
  109. #ifndef HAVE_INET_ATON
  110. int
  111. inet_aton (const char *cp, struct in_addr *inaddr);
  112. #endif
  113. #endif /* _ZEBRA_SOCKUNION_H */