1996-09-04 07:17:43 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
2011-07-27 07:17:02 -07:00
|
|
|
/* OCaml */
|
1996-09-04 07:17:43 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../../LICENSE. */
|
1996-09-04 07:17:43 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2012-03-22 01:39:43 -07:00
|
|
|
#include "misc.h"
|
1996-09-04 07:17:43 -07:00
|
|
|
|
1997-09-02 09:01:39 -07:00
|
|
|
union sock_addr_union {
|
1996-09-04 07:17:43 -07:00
|
|
|
struct sockaddr s_gen;
|
|
|
|
struct sockaddr_in s_inet;
|
2012-07-13 05:15:57 -07:00
|
|
|
#ifdef HAS_IPV6
|
|
|
|
struct sockaddr_in6 s_inet6;
|
|
|
|
#endif
|
1997-09-02 09:01:39 -07:00
|
|
|
};
|
1996-09-04 07:17:43 -07:00
|
|
|
|
1997-09-02 09:01:39 -07:00
|
|
|
extern union sock_addr_union sock_addr;
|
1996-09-04 07:17:43 -07:00
|
|
|
|
2000-03-16 05:35:20 -08:00
|
|
|
#ifdef HAS_SOCKLEN_T
|
|
|
|
typedef socklen_t socklen_param_type;
|
|
|
|
#else
|
|
|
|
typedef int socklen_param_type;
|
|
|
|
#endif
|
|
|
|
|
2004-04-27 06:49:50 -07:00
|
|
|
extern void get_sockaddr (value mladdr,
|
|
|
|
union sock_addr_union * addr /*out*/,
|
|
|
|
socklen_param_type * addr_len /*out*/);
|
|
|
|
CAMLprim value alloc_sockaddr (union sock_addr_union * addr /*in*/,
|
2005-03-24 09:20:54 -08:00
|
|
|
socklen_param_type addr_len, int close_on_error);
|
2004-04-27 06:49:50 -07:00
|
|
|
CAMLprim value alloc_inet_addr (struct in_addr * inaddr);
|
|
|
|
#define GET_INET_ADDR(v) (*((struct in_addr *) (v)))
|
2012-07-13 05:15:57 -07:00
|
|
|
|
|
|
|
#ifdef HAS_IPV6
|
|
|
|
CAMLexport value alloc_inet6_addr (struct in6_addr * inaddr);
|
|
|
|
#define GET_INET6_ADDR(v) (*((struct in6_addr *) (v)))
|
|
|
|
#endif
|