1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Objective Caml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* 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. */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-05-08 08:18:32 -07:00
|
|
|
#include <mlvalues.h>
|
|
|
|
#include <alloc.h>
|
|
|
|
#include <memory.h>
|
|
|
|
#include <fail.h>
|
1996-09-04 07:15:31 -07:00
|
|
|
#include "unixsupport.h"
|
1995-05-08 08:18:32 -07:00
|
|
|
|
|
|
|
#ifdef HAS_SOCKETS
|
|
|
|
|
1996-09-04 07:15:31 -07:00
|
|
|
#ifndef _WIN32
|
1995-05-08 08:18:32 -07:00
|
|
|
#include <netdb.h>
|
1996-09-04 07:15:31 -07:00
|
|
|
#else
|
|
|
|
#include <winsock.h>
|
|
|
|
#endif
|
1995-05-08 08:18:32 -07:00
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
static value alloc_proto_entry(struct protoent *entry)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
|
|
|
value res;
|
1997-05-26 10:16:31 -07:00
|
|
|
value name = Val_unit, aliases = Val_unit;
|
1995-05-08 08:18:32 -07:00
|
|
|
|
1997-05-26 10:16:31 -07:00
|
|
|
Begin_roots2 (name, aliases);
|
|
|
|
name = copy_string(entry->p_name);
|
2001-07-02 05:24:13 -07:00
|
|
|
aliases = copy_string_array((const char**)entry->p_aliases);
|
1998-10-26 11:19:32 -08:00
|
|
|
res = alloc_small(3, 0);
|
1997-05-26 10:16:31 -07:00
|
|
|
Field(res,0) = name;
|
|
|
|
Field(res,1) = aliases;
|
|
|
|
Field(res,2) = Val_int(entry->p_proto);
|
|
|
|
End_roots();
|
1995-05-08 08:18:32 -07:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_getprotobyname(value name)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
|
|
|
struct protoent * entry;
|
|
|
|
entry = getprotobyname(String_val(name));
|
1995-06-18 07:59:32 -07:00
|
|
|
if (entry == (struct protoent *) NULL) raise_not_found();
|
1995-05-08 08:18:32 -07:00
|
|
|
return alloc_proto_entry(entry);
|
|
|
|
}
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_getprotobynumber(value proto)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
|
|
|
struct protoent * entry;
|
|
|
|
entry = getprotobynumber(Int_val(proto));
|
1995-06-18 07:59:32 -07:00
|
|
|
if (entry == (struct protoent *) NULL) raise_not_found();
|
1995-05-08 08:18:32 -07:00
|
|
|
return alloc_proto_entry(entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_getprotobynumber(value proto)
|
1995-05-08 08:18:32 -07:00
|
|
|
{ invalid_argument("getprotobynumber not implemented"); }
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_getprotobyname(value name)
|
1995-05-08 08:18:32 -07:00
|
|
|
{ invalid_argument("getprotobyname not implemented"); }
|
|
|
|
|
|
|
|
#endif
|