home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / kerberosIV / include / klog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-25  |  1.6 KB  |  44 lines

  1. /*
  2.  * $Source: /usr/src/kerberosIV/include/RCS/klog.h,v $
  3.  * $Author: kfall $
  4.  * $Header: /usr/src/kerberosIV/include/RCS/klog.h,v 4.8 90/06/25 20:50:01 kfall Exp $
  5.  *
  6.  * Copyright 1988 by the Massachusetts Institute of Technology.
  7.  *
  8.  * For copying and distribution information, please see the file
  9.  * <mit-copyright.h>.
  10.  *
  11.  * This file defines the types of log messages logged by klog.  Each
  12.  * type of message may be selectively turned on or off. 
  13.  */
  14.  
  15. #include <mit-copyright.h>
  16.  
  17. #ifndef KLOG_DEFS
  18. #define KLOG_DEFS
  19.  
  20. #define KRBLOG         "/var/log/kerberos.log"  /* master server  */
  21. #define KRBSLAVELOG    "/var/log/kerberos_slave.log"  /* slave server  */
  22. #define    NLOGTYPE    100    /* Maximum number of log msg types  */
  23.  
  24. #define L_NET_ERR      1    /* Error in network code        */
  25. #define L_NET_INFO      2    /* Info on network activity        */
  26. #define L_KRB_PERR      3    /* Kerberos protocol errors        */
  27. #define L_KRB_PINFO      4    /* Kerberos protocol info        */
  28. #define L_INI_REQ      5    /* Request for initial ticket        */
  29. #define L_NTGT_INTK       6    /* Initial request not for TGT        */
  30. #define L_DEATH_REQ       7    /* Request for server death        */
  31. #define L_TKT_REQ      8    /* All ticket requests using a tgt  */
  32. #define L_ERR_SEXP      9    /* Service expired            */
  33. #define L_ERR_MKV     10    /* Master key version incorrect     */
  34. #define L_ERR_NKY     11    /* User's key is null            */
  35. #define L_ERR_NUN     12    /* Principal not unique            */
  36. #define L_ERR_UNK     13    /* Principal Unknown            */
  37. #define L_ALL_REQ     14    /* All requests                */
  38. #define L_APPL_REQ     15    /* Application requests (using tgt) */
  39. #define L_KRB_PWARN      16    /* Protocol warning messages        */
  40.  
  41. char   *klog();
  42.  
  43. #endif /* KLOG_DEFS */
  44.