aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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