diff options
| author | Lucas Castro <lucas@gnuabordo.com.br> | 2024-01-10 22:33:44 -0300 |
|---|---|---|
| committer | Lucas Castro <lucas@gnuabordo.com.br> | 2024-01-10 22:33:44 -0300 |
| commit | a4270020addc324fb60d2b1b446b41bc31e3baf8 (patch) | |
| tree | 8708f08c66a63f08c0cd88ab1a46faadcd3f4706 /icmp6_t.h | |
Import Upstream version 1.0.4upstream/1.0.4
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 */ |
