aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-01-25 13:55:20 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-01-25 13:55:20 +0000
commit62bf860d4f4244f7dffd5caa4f189203563c91e1 (patch)
tree0282b7e98f4ab30fac4412a31a8c3ea13f69ea98 /epan
parent3605d892f077dedb3d9f92d147ab917aa2b3342e (diff)
Add tfs_reliable_not_reliable.
svn path=/trunk/; revision=35644
Diffstat (limited to 'epan')
-rw-r--r--epan/tfs.c2
-rw-r--r--epan/tfs.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/epan/tfs.c b/epan/tfs.c
index 17a46d796b..267cd665ca 100644
--- a/epan/tfs.c
+++ b/epan/tfs.c
@@ -59,4 +59,6 @@ const true_false_string tfs_used_notused = { "Used", "Not used" };
const true_false_string tfs_high_low = { "High", "Low" };
const true_false_string tfs_pressed_not_pressed = { "Pressed", "Not pressed" };
const true_false_string tfs_implemented_not_implemented = { "Implemented", "Not Implemented" };
+const true_false_string tfs_requested_not_requested = { "Requested", "Not Requested" };
+const true_false_string tfs_reliable_not_reliable = { "Reliable", "Not Reliable" };
diff --git a/epan/tfs.h b/epan/tfs.h
index 154386d9dc..94b1da2835 100644
--- a/epan/tfs.h
+++ b/epan/tfs.h
@@ -66,5 +66,6 @@ WS_VAR_IMPORT const true_false_string tfs_used_notused;
WS_VAR_IMPORT const true_false_string tfs_high_low;
WS_VAR_IMPORT const true_false_string tfs_pressed_not_pressed;
WS_VAR_IMPORT const true_false_string tfs_implemented_not_implemented;
-
+WS_VAR_IMPORT const true_false_string tfs_requested_not_requested;
+WS_VAR_IMPORT const true_false_string tfs_reliable_not_reliable;
#endif