home *** CD-ROM | disk | FTP | other *** search
/ Power Hacker 2003 / Power_Hacker_2003.iso / Exploit and vulnerability / w00w00 / sectools / SRS / client / include / priorities.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-12  |  505 b   |  25 lines

  1. #ifndef _PRIORITIES_H
  2. #define _PRIORITIES_H
  3.  
  4. __BEGIN_DECLS
  5.  
  6. Code prioritynames[] = {
  7.      {    "panic",    LOG_EMERG },
  8.      {    "emerg",    LOG_EMERG },
  9.      {  "alert",    LOG_ALERT },
  10.      {  "crit",        LOG_CRIT },
  11.      {    "err",        LOG_ERR },
  12.      {    "error",    LOG_ERR },
  13.      {    "warn",        LOG_WARNING },
  14.      {    "warning",    LOG_WARNING },
  15.      {    "notice",    LOG_NOTICE },
  16.      {    "info",        LOG_INFO },
  17.      {  "debug",    LOG_DEBUG },
  18.      {    "none",        INTERNAL_NOPRI },
  19.      {    NULL,        -1 }
  20. };
  21.  
  22. __END_DECLS
  23.  
  24. #endif /* _PRIORITIES_H */
  25.