SSH Daemon Project
public
Read
Owner: themaster
Branch: main
Commits: 2
Updated: 2026-04-19 00:20
Git CLI clone URL
git clone https://www.xt-emporium.com/git/ssh-daemon-project.git
Fullscreen desktop URL
Code
Commits
History
Branches
Bug Reports
Discussions
Compare
Settings
ssh-daemon-project
/
src
/
syslog.h
File editor
#ifndef DROPBEAR_ELKS_SYSLOG_H #define DROPBEAR_ELKS_SYSLOG_H #include <stdarg.h> #define LOG_EMERG 0 #define LOG_ALERT 1 #define LOG_CRIT 2 #define LOG_ERR 3 #define LOG_WARNING 4 #define LOG_NOTICE 5 #define LOG_INFO 6 #define LOG_DEBUG 7 #define LOG_AUTH 32 #define LOG_AUTHPRIV LOG_AUTH #define LOG_PID 0 static inline void openlog(const char *ident, int option, int facility) { (void)ident; (void)option; (void)facility; } static inline void closelog(void) { } static inline void syslog(int priority, const char *fmt, ...) { (void)priority; (void)fmt; } #endif
Commit message
This repository is read-only for this account.
Repository snapshot
Current branch
main
Visibility
public
Your access
Read
Remote
None
File activity
View file history