Plan 9 from Bell Labs’s /usr/web/sources/contrib/fgb/root/sys/src/cmd/openssh/syslog.h

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#ifndef __SYSLOG_H
#define __SYSLOG_H

extern void openlog(char *, int, int);
extern void closelog(void);
extern void syslog(int, char *, ...);

enum {
	LOG_AUTH,
	LOG_CRIT,
	LOG_DAEMON,
	LOG_DEBUG,
	LOG_ERR,
	LOG_INFO,
	LOG_LOCAL0,
	LOG_LOCAL1,
	LOG_LOCAL2,
	LOG_LOCAL3,
	LOG_LOCAL4,
	LOG_LOCAL5,
	LOG_LOCAL6,
	LOG_LOCAL7,
	LOG_PID,
	LOG_USER,
};

#endif

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.