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 <fail.h>
|
2005-03-24 09:20:54 -08:00
|
|
|
#include <memory.h>
|
1996-09-04 07:15:31 -07:00
|
|
|
#include "unixsupport.h"
|
1995-05-08 08:18:32 -07:00
|
|
|
|
|
|
|
#ifdef HAS_SOCKETS
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
1996-09-04 07:15:31 -07:00
|
|
|
|
|
|
|
#ifndef _WIN32
|
1995-05-08 08:18:32 -07:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#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_service_entry(struct servent *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, proto = Val_unit;
|
1995-05-08 08:18:32 -07:00
|
|
|
|
1997-05-26 10:16:31 -07:00
|
|
|
Begin_roots3 (name, aliases, proto);
|
|
|
|
name = copy_string(entry->s_name);
|
2001-07-02 05:24:13 -07:00
|
|
|
aliases = copy_string_array((const char**)entry->s_aliases);
|
1997-05-26 10:16:31 -07:00
|
|
|
proto = copy_string(entry->s_proto);
|
1998-10-26 11:19:32 -08:00
|
|
|
res = alloc_small(4, 0);
|
1997-05-26 10:16:31 -07:00
|
|
|
Field(res,0) = name;
|
|
|
|
Field(res,1) = aliases;
|
|
|
|
Field(res,2) = Val_int(ntohs(entry->s_port));
|
|
|
|
Field(res,3) = proto;
|
|
|
|
End_roots();
|
1995-05-08 08:18:32 -07:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_getservbyname(value name, value proto)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
|
|
|
struct servent * entry;
|
|
|
|
entry = getservbyname(String_val(name), String_val(proto));
|
1995-06-18 07:59:32 -07:00
|
|
|
if (entry == (struct servent *) NULL) raise_not_found();
|
1995-05-08 08:18:32 -07:00
|
|
|
return alloc_service_entry(entry);
|
|
|
|
}
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_getservbyport(value port, value proto)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
|
|
|
struct servent * entry;
|
1998-07-14 10:05:09 -07:00
|
|
|
entry = getservbyport(htons(Int_val(port)), String_val(proto));
|
1995-06-18 07:59:32 -07:00
|
|
|
if (entry == (struct servent *) NULL) raise_not_found();
|
1995-05-08 08:18:32 -07:00
|
|
|
return alloc_service_entry(entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_getservbyport(value port, value proto)
|
1995-05-08 08:18:32 -07:00
|
|
|
{ invalid_argument("getservbyport not implemented"); }
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_getservbyname(value name, value proto)
|
1995-05-08 08:18:32 -07:00
|
|
|
{ invalid_argument("getservbyname not implemented"); }
|
|
|
|
|
|
|
|
#endif
|