1 #ifndef ANVIL_CONNECTION_H
2 #define ANVIL_CONNECTION_H
3 
4 struct anvil_connection *
5 anvil_connection_create(int fd, bool master, bool fifo);
6 void anvil_connection_destroy(struct anvil_connection *conn);
7 
8 void anvil_connections_destroy_all(void);
9 
10 #endif
11