summaryrefslogtreecommitdiffstats
path: root/src/log/log-connection.h
blob: 2885399dcb83e17b8690467f506e97ed2ae4b7ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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