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 */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* Automatique. Distributed only by permission. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $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
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
static value alloc_service_entry(entry)
|
|
|
|
struct servent * entry;
|
|
|
|
{
|
|
|
|
value res;
|
|
|
|
Push_roots(r, 3);
|
|
|
|
|
|
|
|
r[0] = copy_string(entry->s_name);
|
|
|
|
r[1] = copy_string_array(entry->s_aliases);
|
|
|
|
r[2] = copy_string(entry->s_proto);
|
|
|
|
res = alloc_tuple(4);
|
|
|
|
Field(res,0) = r[0];
|
|
|
|
Field(res,1) = r[1];
|
|
|
|
Field(res,2) = Val_int(ntohs(entry->s_port));
|
|
|
|
Field(res,3) = r[2];
|
|
|
|
Pop_roots();
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
value unix_getservbyname(name, proto) /* ML */
|
|
|
|
value name, proto;
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
value unix_getservbyport(port, proto) /* ML */
|
|
|
|
value port, proto;
|
|
|
|
{
|
|
|
|
struct servent * entry;
|
|
|
|
entry = getservbyport(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
|
|
|
|
|
|
|
|
value unix_getservbyport()
|
|
|
|
{ invalid_argument("getservbyport not implemented"); }
|
|
|
|
|
|
|
|
value unix_getservbyname()
|
|
|
|
{ invalid_argument("getservbyname not implemented"); }
|
|
|
|
|
|
|
|
#endif
|