summaryrefslogtreecommitdiffstats
path: root/src/anvil/anvil-connection.h
blob: f94fbabe097848b7bca13a0e3a77d5cb09d57218 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef ANVIL_CONNECTION_H
#define ANVIL_CONNECTION_H

struct anvil_connection *
anvil_connection_create(int fd, bool master, bool fifo);
void anvil_connection_destroy(struct anvil_connection *conn);

void anvil_connections_destroy_all(void);

#endif