aboutsummaryrefslogtreecommitdiff
path: root/icmp6_t.h
blob: d3c1f5be10e109f3c53aec61a6cdec3b45cae5f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*

  (C) 2011 Mika Ilmaranta <ilmis@nullnet.fi>

*/

#ifndef __ICMP6_T_H__
#define __ICMP6_T_H__

struct icmp6msg
{
	int type;
	int code;
	char *type_msg;
	char *code_msg;
};

struct icmp6msg *stricmp6(int type, int code);

#endif

/* EOF */