blob: 7983fffe47f72fa49f7ed187c3f2ff79705c850e (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef CONFIG_CONNECTION_H
#define CONFIG_CONNECTION_H
struct config_connection *config_connection_create(int fd);
void config_connection_destroy(struct config_connection *conn);
void config_connections_destroy_all(void);
#endif
|