sammler/network.h

14 lines
266 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"
int net_init_srv();
int net_init_cli();
int net_receive(int sock);
2006-10-07 20:48:20 +02:00
int net_submit(char *hostname, char *plugin, char *filename, int ds_id, 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_ */