aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/sat.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-06-20 20:14:22 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-06-20 20:14:22 +0000
commit2ab0496a7204c1bb149bd95bdb0644a565ec5270 (patch)
treeffe63e21c8d8b33b2d6d40bb6c02c448b7b6e885 /gtk/sat.h
parent3a6c9ab13448b557586a427bd025bc1ff99ac4cc (diff)
From Mike Duigou:
In order to get filtering of conversations and > endpoints to work from the endpoints and conversations windows I found > it necessary to add a new AT_URI address type and a SAT_JXTA. This also > necessitated a change to to_str.c to avoid a buffer overflow problem. > Please review these changes carefully. > > Also includes some changes to the jxta dissector to fix filtering on > generated fields and some changes to the types used for ints/unsigned ints. > > Fixes a bug with the processing of messages containing namespaces. svn path=/trunk/; revision=14714
Diffstat (limited to 'gtk/sat.h')
-rw-r--r--gtk/sat.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/gtk/sat.h b/gtk/sat.h
index 5cd108b9e4..6a1043affb 100644
--- a/gtk/sat.h
+++ b/gtk/sat.h
@@ -1,6 +1,6 @@
/* sat.h
* 2003 Ronnie Sahlberg
- * Sub-address types for MAC addresses
+ * Sub-address types for MAC/URI addresses
*
* $Id$
*
@@ -33,9 +33,10 @@
/** Address type */
typedef enum {
SAT_NONE, /**< no address type */
- SAT_ETHER, /**< Ethernet */
- SAT_FDDI, /**< FDDI */
- SAT_TOKENRING /**< Token Ring */
+ SAT_ETHER, /**< MAC : Ethernet */
+ SAT_FDDI, /**< MAC : FDDI */
+ SAT_TOKENRING, /**< MAC : Token Ring */
+ SAT_JXTA /**< URI : JXTA */
} SAT_E;
#endif /* __GTK_SAT_H__ */