summaryrefslogtreecommitdiffstats
path: root/include/init.h
blob: a0210d5f76cacf12087cdc33fbdb38ac4a2843a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _NFT_SYNC_EVENT_H_
#define _NFT_SYNC_EVENT_H_

int nft_sync_event_init(void);
void nft_sync_event_loop(void);
void nft_sync_event_fini(void);

struct nft_sync_inst;

int tcp_server_start(struct nft_sync_inst *);
int tcp_client_start(struct nft_sync_inst *inst);

#endif