mirror of
https://github.com/yrutschle/sslh.git
synced 2025-04-28 22:32:14 +03:00
11 lines
223 B
C
11 lines
223 B
C
#ifndef LOG_H
|
|
#define LOG_H
|
|
|
|
void setup_syslog(const char* bin_name);
|
|
|
|
void log_message(int type, const char* msg, ...);
|
|
|
|
void log_connection(struct connection_desc* desc, const struct connection *cnx);
|
|
|
|
#endif /* LOG_H */
|