aboutsummaryrefslogtreecommitdiffstats
path: root/packet.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>1998-10-28 01:16:49 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>1998-10-28 01:16:49 +0000
commitdbd5d115f536cff32593ed14587c10f97a55b7c1 (patch)
treea6fc883d1fe9f20b7030bb270fea9ec50b57ec3f /packet.h
parent25b880865c70306b6a0f2aa0eef0a6ba75dd3ab7 (diff)
Add the "Maximize security" type of service for IP, from RFC
1455. Make the arguments to "val_to_str()" and "match_strval()" that point to things those routines don't modify pointers to "const", and make the "value_string" tables passed into those routines in "packet-ip.c" "const". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@72 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet.h')
-rw-r--r--packet.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/packet.h b/packet.h
index f69c6b23aa..770893246b 100644
--- a/packet.h
+++ b/packet.h
@@ -1,7 +1,7 @@
/* packet.h
* Definitions for packet disassembly structures and routines
*
- * $Id: packet.h,v 1.21 1998/10/20 05:31:03 guy Exp $
+ * $Id: packet.h,v 1.22 1998/10/28 01:16:49 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -209,10 +209,11 @@ typedef struct _e_ip {
#define IPTOS_TOS_MASK 0x1E
#define IPTOS_TOS(tos) ((tos) & IPTOS_TOS_MASK)
#define IPTOS_NONE 0x00
-#define IPTOS_LOWDELAY 0x10
-#define IPTOS_THROUGHPUT 0x08
-#define IPTOS_RELIABILITY 0x04
#define IPTOS_LOWCOST 0x02
+#define IPTOS_RELIABILITY 0x04
+#define IPTOS_THROUGHPUT 0x08
+#define IPTOS_LOWDELAY 0x10
+#define IPTOS_SECURITY 0x1E
#define IPTOS_PREC_MASK 0xE0
#define IPTOS_PREC(tos) ((tos)&IPTOS_PREC_MASK)
@@ -486,8 +487,8 @@ GtkWidget* add_item_to_tree(GtkWidget *, gint, gint, gchar *, ...)
#else
GtkWidget* add_item_to_tree(GtkWidget *, gint, gint, gchar *, ...);
#endif
-gchar* val_to_str(guint32 val, value_string *vs, char *fmt);
-gchar* match_strval(guint32, value_string*);
+gchar* val_to_str(guint32, const value_string *, const char *);
+gchar* match_strval(guint32, const value_string*);
/* Routines in packet.c */