13 lines
243 B
C
13 lines
243 B
C
#ifndef _NETWORK_H_
|
|
#define _NETWORK_H_
|
|
|
|
#include "plugins.h"
|
|
|
|
int net_init_srv();
|
|
int net_init_cli();
|
|
int net_receive(int sock);
|
|
|
|
void net_submit(char *hostname, char *plugin, char *filename, int ds_id, char *data);
|
|
|
|
#endif /* _NETWORK_H_ */
|