home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume26 / xinetd-2.1.1 / part01 / xinetd / sconst.h < prev   
Encoding:
C/C++ Source or Header  |  1993-06-27  |  688 b   |  34 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 SCONST_H
  8. #define SCONST_H
  9.  
  10. /*
  11.  * $Id: sconst.h,v 6.3 1993/04/22 23:42:22 panos Exp $
  12.  */
  13.  
  14. /*
  15.  * Names of internal non-visible services
  16.  */
  17. #define INTERCEPT_SERVICE_NAME            "intercept"
  18. #define LOG_SERVICE_NAME                    "logging"
  19. #define SHUTDOWN_SERVICE_NAME                "shutdown"
  20.  
  21.  
  22. /*
  23.  * Log entry ids
  24.  */
  25. #define START_ENTRY                            "START"
  26. #define FAIL_ENTRY                            "FAIL"
  27. #define EXIT_ENTRY                            "EXIT"
  28. #define DATA_ENTRY                            "DATA"
  29. #define USERID_ENTRY                            "USERID"
  30. #define NOID_ENTRY                            "NOID"
  31.  
  32. #endif     /* SCONST_H */
  33.  
  34.