nagios4/t-tap/stub_netutils.c

9 lines
242 B
C
Raw Normal View History

2019-04-18 17:09:18 +02:00
int my_tcp_connect(const char *host_name, int port, int *sd, int timeout)
{ return OK; }
2017-05-19 23:37:19 +02:00
2019-04-18 17:09:18 +02:00
int my_sendall(int s, const char *buf, int *len, int timeout)
{ return OK; }
int my_recvall(int s, char *buf, int *len, int timeout)
{ return OK; }