aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2010-03-18(Minor) Fix a gcc -Wshadow warning.Bill Meier1-4/+5
svn path=/trunk/; revision=32233
2010-03-18From Hadar Shoham: Bootp option 61Bill Meier2-1/+130
See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4583 svn path=/trunk/; revision=32232
2010-03-18cmake changes:Jörg Mayer27-54/+123
- Add checking for linker flags - Install plugins with the name including the Wireshark version. This will make it easier to find matching plugin versions if files get just copied over. svn path=/trunk/; revision=32231
2010-03-17Define HAVE_PCAP_LIST_DATALINKS, HAVE_PCAP_FREE_DATALINKS, andGuy Harris1-4/+12
HAVE_PCAP_SET_DATALINK only if we have the WinPcap development package; otherwise, don't define them - if you don't have the WinPcap development package when building on Windows, we don't define HAVE_LIBPCAP, so we won't include any of the code controlled by those ifdefs in any case, and, if you do have the WinPcap development package, you'll need to have the 4.1 version (you won't need WinPcap 4.1 at run time, but you will need the 4.1 development package at build time). svn path=/trunk/; revision=32230
2010-03-17Add dissection of "multiplexing with RTP header compression"Anders Broman1-31/+74
inspired by Sourabh Rathors bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4591 svn path=/trunk/; revision=32229
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-17Trivial reformattingMartin Mathieson1-2/+2
svn path=/trunk/; revision=32226
2010-03-17Add CMake tests for pcap_datalink_val_to_description() andGuy Harris2-6/+20
pcap_free_datalinks(). Sort the CMake tests in cmake/modules/FindPCAP.cmake into the same order as the tests in the autoconf script, and note that, in the autoconf script, the checks for pcap_open_dead() and pcap_freecode() do more than just look for the routines in the library. svn path=/trunk/; revision=32225
2010-03-17Add HAVE_PCAP_FREE_DATALINKS to config.h.win32, as we've added it toGuy Harris1-0/+1
config.nmake and Makefile.nmake. svn path=/trunk/; revision=32224
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
2010-03-17Use the right #define value to check whether WinPcap hasGuy Harris3-1/+3
pcap_free_datalinks(). *Set* that #define, while we're at it. svn path=/trunk/; revision=32220
2010-03-17Change som proto_tree_add_text() regarding protocoll errors toAnders Broman1-8/+13
expert info's. svn path=/trunk/; revision=32219
2010-03-17Add heuristic table for Q.931 User-specific protocolTomas Kukosa3-12/+29
svn path=/trunk/; revision=32218
2010-03-17Fix crash when opening About box with disabled OID resolution.Balint Reczey1-0/+5
Thanks to Hilko Bengen for the detailed bug report at http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=574086 svn path=/trunk/; revision=32217
2010-03-17Update according to IANA registery.Jaap Keuter1-2/+16
svn path=/trunk/; revision=32216
2010-03-16From Harald Welte:Anders Broman2-0/+399
Add new GSMTAP dissector. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4508 (I incorporated the .h file into the .c file). svn path=/trunk/; revision=32214
2010-03-16From KATAOKA Toshihiro:Anders Broman1-37/+94
Diameter dictionary for MIPv4 is out of RFC4004. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4587 svn path=/trunk/; revision=32213
2010-03-16Fix unused parameter 'num_fci' warning.Anders Broman1-2/+2
svn path=/trunk/; revision=32212
2010-03-16From Ed Beroset: Add missing include in tcp_dissect_pdus example.Bill Meier1-0/+1
svn path=/trunk/; revision=32211
2010-03-16From Matteo Valdina:Anders Broman1-70/+276
Support for RTCP RFC-5104. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4582 svn path=/trunk/; revision=32210
2010-03-16Remove trailing semicolonKovarththanan Rajaratnam2-6/+6
svn path=/trunk/; revision=32209
2010-03-16Add AMR-WB to the rtp_dyn_payload_type table.Anders Broman1-7/+32
svn path=/trunk/; revision=32208
2010-03-16Some if (tree) cleanupKovarththanan Rajaratnam1-21/+19
svn path=/trunk/; revision=32207
2010-03-16Avoid some dead assignmentsKovarththanan Rajaratnam1-3/+3
svn path=/trunk/; revision=32206
2010-03-16Whitespace cleanupKovarththanan Rajaratnam1-10/+9
svn path=/trunk/; revision=32205
2010-03-16Indicate width of parent bitfieldKovarththanan Rajaratnam1-2/+2
svn path=/trunk/; revision=32204
2010-03-16Inline truth/false tableKovarththanan Rajaratnam1-2/+5
svn path=/trunk/; revision=32203
2010-03-16This adds a new dissector plugin: INTERLINK. This protocol is used inUwe Girlich23-0/+1031
(real and simulated) BMW cars for all kinds of gadget communication. My plugin only dissects the high level infrastructure and not any particular messages. It uses a heuristic dissector to detect INTERLINK packets. svn path=/trunk/; revision=32202
2010-03-16Fix some compiler warnings, clean up indentation a bit.Guy Harris1-19/+20
svn path=/trunk/; revision=32201
2010-03-16A few minor changes:Bill Meier1-14/+15
- Move proto_reg_handoff... to the end of the file; - Remove unneeded forward declaration; - Fix a typo; - Use #if 0/#endif rather than /*...*/to comment-out code. svn path=/trunk/; revision=32200
2010-03-15tvb_length() is *not* the length of the packet; it's the amount ofGuy Harris1-6/+6
captured data for the packet, which could well be less then the length of the packet if a slice/snapshot length was used. tvb_reported_length() is the length as the packet appeared on the {wire,air}. If a > b, and you want to report how much a was greater than b, subtract b from a, don't take the negative of b-a, especially if a and b are unsigned.... svn path=/trunk/; revision=32199
2010-03-15From Adrian Daerr:Jaap Keuter3-0/+466
I have written a crude dissector of GigE-vision Control Protocol packets. The dissector was written as part of the opengigevision project: http://gitorious.org/opengigevision svn path=/trunk/; revision=32198
2010-03-15My previous checkin reverted some changes, try to fix that.Anders Broman1-412/+70
svn path=/trunk/; revision=32197
2010-03-15Initialize a variable that otherwise might not beJeff Morriss1-1/+2
svn path=/trunk/; revision=32196
2010-03-15Declare sip_uri_offset_init() as returning void and remove a couple unused ↵Jeff Morriss1-8/+4
variables svn path=/trunk/; revision=32195
2010-03-15To fill stat_info->tap_to_addr it needs to be outside of if(tree).Anders Broman1-83/+431
svn path=/trunk/; revision=32194
2010-03-15Fix for bug 4565:Jaap Keuter1-1/+1
As a true 'pseudo' GLib function, act benign when presented a NULL pointer. svn path=/trunk/; revision=32193
2010-03-15Measure the filtering time.Anders Broman1-0/+6
svn path=/trunk/; revision=32192
2010-03-14Use dissect_sip_uri() in dfilter_sip_request_line().Anders Broman1-77/+21
svn path=/trunk/; revision=32191
2010-03-14Add some extra (optional) physical layer attributes to logged MAC frames.Martin Mathieson3-75/+428
svn path=/trunk/; revision=32190
2010-03-14From Hadar Shoham via bug 4578:Stig Bjørlykke1-2/+3
Fix bootp option 125, Cablelab sun option 1, Option Request as string instead of integer. svn path=/trunk/; revision=32189
2010-03-14Use val_to_str_const() where have no format is default stringMartin Mathieson1-15/+15
svn path=/trunk/; revision=32188
2010-03-14[Automatic manuf and enterprise-numbers update for 2010-03-14]Gerald Combs2-17/+229
svn path=/trunk/; revision=32185
2010-03-14Took a guess at the code for missing RAPS.Martin Mathieson1-0/+1
The G.8032 spec is limited to members of some organisation ("TIES users"). svn path=/trunk/; revision=32184
2010-03-14From Jouni Malinen:Jaap Keuter1-1/+35
Use Key Info field to figure out which EAPOL-Key frame use case (4-way handshake and Group key handshake) and provide more details in COL_INFO column to make it easier to debug issues with EAPOL-Key exchanges. In addition, add description of key descriptor version 3 from IEEE Std 802.11r-2008. svn path=/trunk/; revision=32183
2010-03-14From Robert Dickerson:Jaap Keuter1-1/+98
Adding the R-APS (Ring-Automatic Protection Switching), G.8032, to the built-in CFM dissector. svn path=/trunk/; revision=32182
2010-03-13Update the list of pidl files.Guy Harris1-2/+11
svn path=/trunk/; revision=32181
2010-03-13Forgot to copy over idl_types.hJörg Mayer1-17/+3
svn path=/trunk/; revision=32180
2010-03-13Update pidl directory to mirror current samba sources.Jörg Mayer22-1227/+2517
I hope we didn't have any local changes in there. svn path=/trunk/; revision=32179