home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / security / xinetd / xinetd.2.0.6 / builtin.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-22  |  601 b   |  33 lines

  1. /*
  2.  * (c) Copyright 1992 by Panagiotis Tsirigotis
  3.  * All rights reserved.  The file named COPYRIGHT specifies the terms 
  4.  * and conditions for redistribution.
  5.  */
  6.  
  7. #ifndef BUILTIN_H
  8. #define BUILTIN_H
  9.  
  10. /*
  11.  * $Id: builtin.h,v 5.1 1992/10/31 23:56:10 panos Exp $
  12.  */
  13.  
  14. #include "defs.h"
  15.  
  16. #define FORK                YES
  17. #define NO_FORK            NO
  18.  
  19. struct builtin_service
  20. {
  21.    char *name ;
  22.    int socket_type ;
  23.    voidfunc function ;
  24.    boolean_e fork_server ;
  25. } ;
  26.  
  27. struct builtin_service *find_builtin() ;
  28. struct builtin_service *find_special_builtin() ;
  29. struct builtin_service *builtin_lookup() ;
  30.  
  31. #endif    /* BUILTIN_H */
  32.  
  33.