Skip to content
Snippets Groups Projects
Commit 162c70e3 authored by rswindell's avatar rswindell
Browse files

Added log level (e.g. LOG_INFO) and SMB agent (e.g. AGENT_PERSON) constant

definitions.
parent 47f8b85c
No related branches found
No related tags found
No related merge requests found
......@@ -588,6 +588,19 @@ var FI_OLDUL =4 /* Search/Remove files uploaded before */
var FI_OFFLINE =5 /* Search/Remove files not online */
var FI_USERXFER =6 /* User Xfer Download */
var FI_CLOSE =7 /* Close any open records */
/********************************************/
/********************************************/
/* Log "levels" supported by log() function */
/********************************************/
var LOG_EMERG =0 /* system is unusable */
var LOG_ALERT =1 /* action must be taken immediately */
var LOG_CRIT =2 /* critical conditions */
var LOG_ERR =3 /* error conditions */
var LOG_WARNING =4 /* warning conditions */
var LOG_NOTICE =5 /* normal but significant condition */
var LOG_INFO =6 /* informational */
var LOG_DEBUG =7 /* debug-level messages */
/********************************************/
/* Message attributes */
......@@ -637,3 +650,9 @@ var NET_QWK =4 // QWK
var NET_INTERNET =5 // NNTP
var NET_WWIV =6 // WWIV
var NET_MHS =7 // MHS
/* Agent types */
var AGENT_PERSON =0 /* Human */
var AGENT_PROCESS =1 /* Unknown process type */
var AGENT_SMBUTIL =2 /* Imported via Synchronet SMBUTIL */
var AGENT_SMTPSYSMSG =3 /* Synchronet SMTP server system message */
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment