File: path6.h

package info (click to toggle)
ipv6toolkit 2.0%2Bds.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 3,296 kB
  • sloc: ansic: 26,827; perl: 1,058; makefile: 137
file content (23 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Header file for the path6 tool
 *
 */


#define	PROBE_ICMP6_ECHO		1
#define PROBE_TCP				3
#define PROBE_UDP				4
#define PROBE_AH				5
#define PROBE_ESP				6

#define PROBE_PORT_OFFSET		0x00c4
#define PROBE_TIMEOUT			4


struct probe{
	unsigned char	sent;
	unsigned char	received;
	struct timeval	rtstamp;
	struct timeval	ststamp;
	struct in6_addr	srcaddr;
};