aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-hip.c
AgeCommit message (Collapse)AuthorFilesLines
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-2/+2
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2010-06-04From Samu Varjonen: Whitespace cleanupBill Meier1-1175/+1176
Tabs converted to 8 spaces and trailing whitespaces removed, etc. svn path=/trunk/; revision=33086
2010-03-25From Samu Varjonen: "New patch to the locators"Bill Meier1-343/+369
See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3378#c25 From me: Fix typo: "REALY_UDP_HIP" --> "RELAY_UDP_HIP"; Cleanup whitespace. svn path=/trunk/; revision=32276
2010-03-17Revert SVN #32222: The handling of TLVs within the "LOCATOR" TLV needs to be ↵Bill Meier1-78/+56
reworked. svn path=/trunk/; revision=32228
2010-03-17From Samu Varjonen: Locator presentation change for HIP dissector.Bill Meier1-56/+78
See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3378 From me: use consistent (tab) indentation; replace use of C++ style comment. svn path=/trunk/; revision=32222
2010-03-17Minor changes:Bill Meier1-103/+98
- stdio/stdlib/string includes not req'd; - Use less generic names for a few enum identifiers; - Use coonsistent indentation in a few palces. svn path=/trunk/; revision=32221
2009-12-02From Samu Varjonen:Jaap Keuter1-3/+6
svn diff of the changes after draft-ietf-hip-nat-traversal-09 was approved to become an RFC. svn path=/trunk/; revision=31148
2009-09-06Don't pass ep_alloc()'ed strings to col_set_str().Kovarththanan Rajaratnam1-1/+1
Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3984 svn path=/trunk/; revision=29726
2009-08-21Sanitize epan includesKovarththanan Rajaratnam1-2/+2
svn path=/trunk/; revision=29499
2009-08-16Switch a bunch of dissectors over to using tvb_new_subset_remaining()Kovarththanan Rajaratnam1-1/+1
svn path=/trunk/; revision=29446
2009-06-28Make dissector handle unexpected data better.Jaap Keuter1-9/+9
svn path=/trunk/; revision=28875
2009-06-15Trivial warning fixes:Jörg Mayer1-3/+3
- Might be used uninitialized - not a prototype - comma at end of enum svn path=/trunk/; revision=28730
2009-06-02packet_hip: (Minor): Remove unused data_handle; move proto_register... to ↵Bill Meier1-404/+400
just before proto_reg-handoff... svn path=/trunk/; revision=28604
2009-06-02Rewrote to add IPv6 addresses correctly and rewrote some proto_item_add_bytes()Stig Bjørlykke1-25/+43
to avoid using tvb_get_ptr(). svn path=/trunk/; revision=28601
2009-06-02Removed a unused preference setting, some unused includes andStig Bjørlykke1-27/+1
some unused code. svn path=/trunk/; revision=28598
2009-06-02From Samu Varjonen via bug 3378:Stig Bjørlykke1-0/+1526
Added support for Host Identity Protocol (HIP). From me: - Adjusted location of "Checksum" and "HIP Controls", as they seems to have switched place in the bytes window - Rewrote some proto_tree_add_uint -> proto_tree_add_item (some still remain) - Rewrote to not use tvb_memcpy() - Corrected some proto_tree_add_item's as the format seems to be big-endian - Terminate ALL value_string's with { 0, NULL } - No need to zero-terminate value_string strings. - Removed call to check_col() - Removed some prototypes - Removed unused hf_hip_tlv_id, hf_hip_res and hf_hip_tlv_enc_iv (please check) - Rewrote some C++ comments svn path=/trunk/; revision=28596