sammler/network.h

14 lines
298 B
C
Raw Normal View History

2006-08-03 19:49:07 +02:00
#ifndef _NETWORK_H_
#define _NETWORK_H_
2006-09-30 20:27:56 +02:00
#include "plugins.h"
2007-03-31 22:31:07 +02:00
int net_init_srv(void);
int net_init_cli(void);
2006-09-30 20:27:56 +02:00
int net_receive(int sock);
2007-03-31 22:31:07 +02:00
int net_submit(const char *hostname, const char *plugin, const char *filename, int ds_id, const char *data);
2006-10-11 16:47:48 +02:00
int net_submit_flush();
2006-08-03 19:49:07 +02:00
#endif /* _NETWORK_H_ */