1996-09-04 07:17:43 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
|
|
|
/* Xavier Leroy and Pascal Cuoq, 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 */
|
|
|
|
/* under the terms of the GNU Library General Public License. */
|
1996-09-04 07:17:43 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#include <mlvalues.h>
|
|
|
|
#include "unixsupport.h"
|
|
|
|
#include "socketaddr.h"
|
|
|
|
|
|
|
|
value unix_getpeername(sock) /* ML */
|
|
|
|
value sock;
|
|
|
|
{
|
|
|
|
int retcode;
|
|
|
|
|
|
|
|
sock_addr_len = sizeof(sock_addr);
|
1997-09-03 07:38:02 -07:00
|
|
|
retcode = getpeername((SOCKET) Handle_val(sock),
|
1996-09-04 07:17:43 -07:00
|
|
|
&sock_addr.s_gen, &sock_addr_len);
|
1997-09-04 06:45:56 -07:00
|
|
|
if (retcode == -1) unix_error(WSAGetLastError(), "getpeername", Nothing);
|
1996-09-04 07:17:43 -07:00
|
|
|
return alloc_sockaddr();
|
|
|
|
}
|