blob: 95ba3d97fe366a2ecc974dfcae60808b053e29cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef tcpremoteinfo_h
#define tcpremoteinfo_h
/*
** Copyright 1998 - 1999 Double Precision, Inc.
** See COPYING for distribution information.
*/
/*
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "rfc1035/rfc1035.h"
#ifdef __cplusplus
extern "C" {
#endif
const char *tcpremoteinfo(const RFC1035_ADDR *, int, /* Local */
const RFC1035_ADDR *, int, /* Remote */
const char **);
#ifdef __cplusplus
} ;
#endif
#endif
|