summaryrefslogtreecommitdiff
path: root/epan/tfs.c
diff options
context:
space:
mode:
authorMike Morrin <morrinmike@gmail.com>2016-04-04 16:07:53 +1200
committerAnders Broman <a.broman58@gmail.com>2016-04-14 12:27:24 +0000
commit006d9821f610bb6c006ac0f0d84ab8668a307945 (patch)
tree99371e3894da6da81d6793311fac27bc0de313c1 /epan/tfs.c
parent7548d185ea0a744f3793ac3a9fcbf722df80d943 (diff)
downloadwireshark-006d9821f610bb6c006ac0f0d84ab8668a307945.tar.gz
Adding a dissector for the Distributed Object Framework protocol.
The DOF is part of the open-source OpenDOF Project, more information at https://opendof.org There is a sample capture file (with encryption keys) at https://wiki.wireshark.org/SampleCaptures#DOF_.28Distributed_Object_Framework.29_Protocols Change-Id: I8d8ce3edf39904d0467a403157f9de2d2a165e90 Reviewed-on: https://code.wireshark.org/review/14394 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/tfs.c')
-rw-r--r--epan/tfs.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/tfs.c b/epan/tfs.c
index 48afa7fb96..dd98f4f052 100644
--- a/epan/tfs.c
+++ b/epan/tfs.c
@@ -51,6 +51,7 @@ const true_false_string tfs_present_not_present = { "Present", "Not Present" };
const true_false_string tfs_active_inactive = { "Active", "Inactive" };
const true_false_string tfs_found_not_found = { "Found", "Not found" };
const true_false_string tfs_command_response = { "Command", "Response" };
+const true_false_string tfs_response_command = { "Response", "Command" };
const true_false_string tfs_capable_not_capable = { "Capable", "Not capable" };
const true_false_string tfs_supported_not_supported = { "Supported", "Not supported" };
const true_false_string tfs_used_notused = { "Used", "Not used" };
@@ -85,10 +86,12 @@ const true_false_string tfs_asynchronous_synchronous = { "Asynchronous", "Synchr
const true_false_string tfs_protocol_sensative_bit_transparent = { "Protocol sensitive", "Bit transparent" };
const true_false_string tfs_full_half = { "Full", "Half" };
const true_false_string tfs_acknowledged_not_acknowledged = { "Acknowledged", "Not Acknowledged" };
+const true_false_string tfs_segmentation_no_segmentation = { "Segmentation", "No segmentation" };
const true_false_string tfs_response_request = { "Response", "Request" };
const true_false_string tfs_defined_not_defined = { "Defined", "Not defined" };
const true_false_string tfs_constructed_primitive = { "Constructed", "Primitive" };
const true_false_string tfs_client_server = { "Client", "Server" };
const true_false_string tfs_server_client = { "Server", "Client" };
const true_false_string tfs_preferred_no_preference = { "Preferred", "No preference" };
+const true_false_string tfs_encrypt_do_not_encrypt = { "Encrypt", "Do Not Encrypt" };