sammler/network.h

14 lines
298 B
C

#ifndef _NETWORK_H_
#define _NETWORK_H_
#include "plugins.h"
int net_init_srv(void);
int net_init_cli(void);
int net_receive(int sock);
int net_submit(const char *hostname, const char *plugin, const char *filename, int ds_id, const char *data);
int net_submit_flush();
#endif /* _NETWORK_H_ */