aboutsummaryrefslogtreecommitdiff
path: root/icmp_t.h
diff options
context:
space:
mode:
Diffstat (limited to 'icmp_t.h')
-rw-r--r--icmp_t.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/icmp_t.h b/icmp_t.h
new file mode 100644
index 0000000..59266d7
--- /dev/null
+++ b/icmp_t.h
@@ -0,0 +1,22 @@
+/*
+
+ (C) 2009 Mika Ilmaranta <ilmis@nullnet.fi>
+
+*/
+
+#ifndef __ICMP_T_H__
+#define __ICMP_T_H__
+
+struct icmpmsg
+{
+ int type;
+ int code;
+ char *type_msg;
+ char *code_msg;
+};
+
+struct icmpmsg *stricmp(int type, int code);
+
+#endif
+
+/* EOF */