DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T f

⟦bb91eba01⟧ TextFile

    Length: 953 (0x3b9)
    Types: TextFile
    Names: »fakesyslog.h«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦cfd40dc56⟧ »EurOpenD3/news/nntp/nntp.1.5.8.tar.Z« 
        └─⟦2ec98eca6⟧ 
            └─⟦this⟧ »server/fakesyslog.h« 
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦5cced586a⟧ »EurOpenD3/news/nntp/nntp.1.5.7.tar.Z« 
        └─⟦7340f105e⟧ 
            └─⟦this⟧ »./server/fakesyslog.h« 

TextFile

/*
 * Fake syslog definitions.
 *
 * @(#)fakesyslog.h	1.1	(Berkeley) 12/18/87
 */

#ifdef FAKESYSLOG

/*
 *  Facility codes
 */

#define LOG_KERN	0
#define LOG_USER	0
#define LOG_MAIL	0
#define LOG_DAEMON	0
#define LOG_AUTH	0
#define LOG_SYSLOG	0
#define LOG_LPR		0
#define LOG_NEWS	0
#define LOG_LOCAL0	0
#define LOG_LOCAL1	0
#define LOG_LOCAL2	0
#define LOG_LOCAL3	0
#define LOG_LOCAL4	0
#define LOG_LOCAL5	0
#define LOG_LOCAL6	0
#define LOG_LOCAL7	0

#define LOG_NFACILITIES	0
#define LOG_FACMASK	0

/*
 *  Priorities
 */

#define LOG_EMERG	0
#define LOG_ALERT	0
#define LOG_CRIT	0
#define LOG_ERR		0
#define LOG_WARNING	0
#define LOG_NOTICE	0
#define LOG_INFO	0
#define LOG_DEBUG	0

#define LOG_PRIMASK	0

/*
 * arguments to setlogmask.
 */

#define	LOG_MASK(pri)	0
#define	LOG_UPTO(pri)	0

/*
 *  Option flags for openlog.
 */

#define	LOG_PID		1
#define	LOG_CONS	0
#define	LOG_ODELAY	0
#define LOG_NDELAY	0
#define LOG_NOWAIT	0

#endif FAKESYSLOG