From 006d9821f610bb6c006ac0f0d84ab8668a307945 Mon Sep 17 00:00:00 2001 From: Mike Morrin Date: Mon, 4 Apr 2016 16:07:53 +1200 Subject: 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 Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman --- epan/tfs.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'epan/tfs.c') 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" }; -- cgit v1.2.1