home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume26 / xinetd-2.1.1 / part01 / xinetd / flags.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-27  |  547 b   |  28 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 FLAGS_H
  8. #define FLAGS_H
  9.  
  10. /*
  11.  * $Id: flags.h,v 6.2 1993/04/22 23:37:35 panos Exp $
  12.  */
  13.  
  14. /*
  15.  * Flags
  16.  */
  17. #define SOFT_RECONFIG_FLAG            1
  18. #define HARD_RECONFIG_FLAG            2
  19. #define TERMINATE_FLAG                3
  20. #define DUMP_FLAG                        4
  21. #define RETRY_FLAG                    5
  22. #define CONSISTENCY_FLAG            6
  23. #define CHILD_FLAG                    7
  24. #define QUIT_FLAG                        8
  25. #define PERIODIC_CHECK_FLAG        9
  26.  
  27. #endif    /* FLAGS_H */
  28.