1 /***********************************************************************/
5 /* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
7 /* Copyright 1996 Institut National de Recherche en Informatique et */
8 /* en Automatique. All rights reserved. This file is distributed */
9 /* under the terms of the GNU Library General Public License, with */
10 /* the special exception on linking described in file ../../LICENSE. */
12 /***********************************************************************/
18 #include "unixsupport.h"
22 #include "socketaddr.h"
24 CAMLprim value
unix_getpeername(value sock
)
27 union sock_addr_union addr
;
28 socklen_param_type addr_len
;
30 addr_len
= sizeof(addr
);
31 retcode
= getpeername(Int_val(sock
), &addr
.s_gen
, &addr_len
);
32 if (retcode
== -1) uerror("getpeername", Nothing
);
33 return alloc_sockaddr(&addr
, addr_len
, -1);
38 CAMLprim value
unix_getpeername(value sock
)
39 { invalid_argument("getpeername not implemented"); }