diff options
Diffstat (limited to 'src/log/log-connection.h')
-rw-r--r-- | src/log/log-connection.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/log/log-connection.h b/src/log/log-connection.h new file mode 100644 index 0000000..2885399 --- /dev/null +++ b/src/log/log-connection.h @@ -0,0 +1,15 @@ +#ifndef LOG_CONNECTION_H +#define LOG_CONNECTION_H + +struct log_connection; + +extern bool verbose_proctitle; +extern char *global_log_prefix; + +void log_connection_create(struct log_error_buffer *errorbuf, + int fd, int listen_fd); + +void log_connections_init(void); +void log_connections_deinit(void); + +#endif |