File: netutils.h

package info (click to toggle)
nagios4 4.4.6-4.1
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 22,336 kB
  • sloc: ansic: 97,631; sh: 12,619; javascript: 5,483; perl: 2,624; makefile: 1,265; php: 381; ruby: 95
file content (10 lines) | stat: -rw-r--r-- 327 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#ifndef NAGIOS_NETUGILS_H_INCLUDED
#define NAGIOS_NETUGILS_H_INCLUDED
#include "common.h"
NAGIOS_BEGIN_DECL
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);
int my_recvall(int s, char *buf, int *len, int timeout);
NAGIOS_END_DECL
#endif