1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
/* ===================================================================
* efingerd.h
*
*
* ================================================================ */
#ifndef EFINGER_H_
#define EFINGER_H_
#define ID_VERSION "1.6.2"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
#include <pwd.h>
#include <syslog.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include <sys/time.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <utmp.h>
#include <unistd.h>
#include "define.h"
/* ==================================================================
* GLOBALS
* ==================================================================
*/
/* SERVICE BEHAVIOR */
unsigned char resolve_addr; /* reverse lookup addresses */
unsigned char ignore_user; /* ignore users' .efingerd file */
unsigned short client_timeout; /* number of seconds till disconnect */
unsigned char display_full_name; /* display users' full name */
/* ==================================================================
* PROTOTYPES:
* ==================================================================
*/
/* #### EFINGER.C #### */
void killsock (int);
int get_ports (char[], u_short *, u_short *);
void client_reply (int, char *);
int get_request (int d, char buffer[], u_short len);
/* #### CHILD.C #### */
extern void killtic (int);
extern void inetd_child (int, int);
void inetd_service (int sd_in, int sd_out);
#endif /* WHOLE FILE */
|