blob: 8f1bd029654de2f8d6cf1283de60329b0108029c (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef NOTIFY_CONNECTION_H
#define NOTIFY_CONNECTION_H
struct director;
void notify_connection_init(struct director *dir, int fd, bool fifo);
void notify_connections_deinit(void);
#endif
|