diff options
Diffstat (limited to 'icmp6_t.h')
| -rw-r--r-- | icmp6_t.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/icmp6_t.h b/icmp6_t.h new file mode 100644 index 0000000..d3c1f5b --- /dev/null +++ b/icmp6_t.h @@ -0,0 +1,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 */ |
