nagios4/include/netutils.h

11 lines
327 B
C
Raw Normal View History

2017-05-19 23:37:19 +02:00
#ifndef NAGIOS_NETUGILS_H_INCLUDED
#define NAGIOS_NETUGILS_H_INCLUDED
#include "common.h"
2017-05-19 22:22:40 +02:00
NAGIOS_BEGIN_DECL
2017-05-19 23:37:19 +02:00
int my_tcp_connect(const char *host_name, int port, int *sd, int timeout);
int my_sendall(int s, const char *buf, int *len, int timeout);
2017-05-19 22:22:40 +02:00
int my_recvall(int s, char *buf, int *len, int timeout);
NAGIOS_END_DECL
#endif