00001 /* -*-C-*- */ 00002 #ifndef SOCKETS_H 00003 #define SOCKETS_H 00004 00009 int sockets_unix_create(const char *fname); 00010 int sockets_unix_connect(const char *fname, int opts); 00011 00012 int sockets_inet_create (int port); 00013 int sockets_inet_connect(const char *hostname, int port); 00014 00015 #endif