/usr/include/sipxtapi/os/OsSysLogFacilities.h is in libsipxtapi-dev 3.3.0~test17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | //
// Copyright (C) 2004-2006 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// Copyright (C) 2004-2006 Pingtel Corp. All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// $$
///////////////////////////////////////////////////////////////////////////////
#ifndef _OsSysLogFacilities_h_
#define _OsSysLogFacilities_h_
// SYSTEM INCLUDES
// APPLICATION INCLUDES
// DEFINES
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// CONSTANTS
// STRUCTS
// ENUMS
//
// *** READ THIS ***
//
// NOTE: If adding a facility, please:
// 1) Insert it before the FAC_MAX_FACILITY.
// 2) Update OsSysLogFacilties.cpp to include the
// string name.
// 3) Update the !enum comments below.
//
// *** READ THIS ***
//
//
enum tagOsSysLogFacility
{
FAC_PERF=0, // performance related
FAC_KERNEL, // kernel/os related
FAC_AUTH, // authentication/security related
FAC_NET, // networking related
FAC_RTP, // RTP/RTCP related
FAC_PHONESET, // phoneset related
FAC_HTTP, // http sever related
FAC_SIP, // sip related
FAC_CP, // call processing related
FAC_MP, // media processing related
FAC_TAO, // TAO related
FAC_JNI, // JNI Layer related
FAC_JAVA, // Java related
FAC_LOG, // OsSysLog related
FAC_WATCHDOG, // WatchDog related
FAC_SIP_OUTGOING, // Outgoing SIP messages
FAC_SIP_INCOMING, // Incoming SIP messages
FAC_SIP_INCOMING_PARSED,// Incoming SIP messages after being parsed
FAC_MEDIASERVER_CGI, // Mediaserver CGIs
FAC_MEDIASERVER_VXI, // Mediaserver VXI engine
FAC_ACD, // ACD related
FAC_PARK, // Park Server related
FAC_APACHE_AUTH, // Apache Authentication Module
FAC_UPGRADE, // Update/Upgrade related
FAC_LINE_MGR, // SIP line manager related
FAC_REFRESH_MGR, // SIP refresh manager related
FAC_PROCESSCGI, // Process Management CGI (process.cgi)
FAC_STREAMING, // Stream Media related message
FAC_REPLICATION_CGI, // replication cgi( replicates databases across components )
FAC_DB, // Database related (sipdb)
FAC_PROCESSMGR, // OsProcessMgr
FAC_PROCESS, // process related
FAC_SIPXTAPI, // sipXtapi related
FAC_AUDIO, // audio related
FAC_CONFERENCE, // Conference bridge
FAC_ODBC, // ODBC related
FAC_CDR, // CDR generating related
FAC_RLS, // Resource list server
FAC_VOICEENGINE, // GIPS VoiceEngine-specific logging
FAC_VIDEOENGINE, // GIPS VideoEngine-specific logging
FAC_APP, // Generic application facility
FAC_SIP_CUSTOM, // Custom transport messages
FAC_SDP, // SDP parsing
FAC_MAX_FACILITY // Last Facility (used to for length)
//
// *** READ THIS ***
//
// NOTE: If adding a facility, please:
// 1) Insert it before the FAC_MAX_FACILITY.
// 2) Update OsSysLogFacilties.cpp to include the
// string name.
// 3) Update the !enum comments below.
//
// *** READ THIS ***
//
//
} ;
//: Defines the various facilities available for platforms.
//
//
//!enumcode: FAC_PERF - performance related
//!enumcode: FAC_KERNEL - kernel/os related
//!enumcode: FAC_AUTH - authentication/security related
//!enumcode: FAC_NET - networking related
//!enumcode: FAC_RTP - RTP/RTCP related
//!enumcode: FAC_PHONESET - phoneset related
//!enumcode: FAC_HTTP - http sever related
//!enumcode: FAC_SIP - sip related
//!enumcode: FAC_CP - call processing related
//!enumcode: FAC_TAO - TAO related
//!enumcode: FAC_JNI - JNI Layer related
//!enumcode: FAC_JAVA - Java related
//!enumcode: FAC_LOG - OsSysLog related
//!enumcode: FAC_SIP_OUTGOING - Outgoing SIP messages
//!enumcode: FAC_SIP_INCOMING - Incoming SIP messages
//!enumcode: FAC_SIP_INCOMING_PARSED - Incoming SIP messages after being parsed
//!enumcode: FAC_MEDIASERVER_CGI - Mediaserver CGIs
//!enumcode: FAC_MEDIASERVER_VXI - Mediaserver VXI engine
//!enumcode: FAC_ACD - ACD related
//!enumcode: FAC_PARK - Park Server related
//!enumcode: FAC_APACHE_AUTH - Apache Authentication Module
//!enumcode: FAC_UPGRADE - Update/Upgrade related
//!enumcode: FAC_PROCESSCGI - Process Management CGI (process.cgi)
//!enumcode: FAC_DB - Database related (sipdb)
//!enumcode: FAC_REPLICATION_CGI - replication cgi( replicates databases across components )
//!enumcode: FAC_PROCESSMGR - os processmanager related
//!enumcode: FAC_PROCESS - process related
//!enumcode: FAC_SIPXTAPI - sipXtapi related
//!enumcode: FAC_AUDIO - audio related
//!enumcode: FAC_CONFERENCE - Conference bridge
//!enumcode: FAC_ODBC - ODBC related
//!enumcode: FAC_CDR - CDR generating related
//!enumcode: FAC_RLS - Resource list server
//!enumcode: FAC_VOICEENGINE - GIPS VoiceEngine related
//!enumcode: FAC_VIDEOENGINE - GIPS VideoEngine related
//!enumcode: FAC_APP - Generic application messages
//!enumcode: FAC_SIP_CUSTOM - custom transport message (in/out)
//!enumcode: FAC_SDP - SDP parsing and handling
// TYPEDEFS
typedef enum tagOsSysLogFacility OsSysLogFacility ;
// FORWARD DECLARATIONS
#endif /* _OsSysLogFacilities_h_ ] */
|