sammler/network.h

13 lines
274 B
C
Raw Permalink 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-04-01 00:17:50 +02:00
int net_init(void);
2007-04-01 14:30:05 +02:00
void net_close(void);
2006-09-30 20:27:56 +02:00
2007-04-01 13:21:51 +02:00
int net_submit(const char *hostname, const char *pluginname, const char *filename, int ds_id, const char *data);
2007-04-01 00:17:50 +02:00
void net_submit_flush(void);
2006-08-03 19:49:07 +02:00
#endif /* _NETWORK_H_ */