aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-11-30Hopefully clarify usage a bit to indicate multiple infile's can be specified ↵Chris Maynard2-14/+31
to be merged. Also, add GPL and copyright info. svn path=/trunk/; revision=40051
2011-11-30Add missing comments in syntax description for -z expertMartin Mathieson1-1/+1
svn path=/trunk/; revision=40050
2011-11-30Change the -z args for expert item. You can now give the minimum severity ↵Martin Mathieson2-26/+97
level to report as well as a filter. Also, now show duplicate reports only once, and give the frequency rather than the frame number. svn path=/trunk/; revision=40049
2011-11-30From Eugene Bogush: Initialize read_err to 0 so mergecap works again. Fixes ↵Chris Maynard1-1/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6623 svn path=/trunk/; revision=40048
2011-11-30Extend coverage of #ifdef HAVE_PCAP_REMOTE to cover the static function ↵Martin Mathieson1-2/+0
insert_new_rows(). svn path=/trunk/; revision=40047
2011-11-30Get rid of warnings.Anders Broman2-35/+35
svn path=/trunk/; revision=40046
2011-11-29From Pascal Quantin:Anders Broman1-0/+5
decoding of IPv6 Control Protocol embedded in PCO https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6629 svn path=/trunk/; revision=40045
2011-11-29From Pascal Quantin:Anders Broman1-1/+1
Currently Wireshark limits the Access Point Name length to 50 bytes. But according to 3GPP 24.008 chapter 10.5.6.1, the maximum length is 100 bytes (102 bytes minus the IEI and length fields) and not 50. The attached patch increases the MAX_APN_LENGTH define value and allow the correct display of an APN with a size greater than 50 bytes. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6628 svn path=/trunk/; revision=40044
2011-11-29Must include header files in a macro, so they get included in theGuy Harris1-0/+1
release tarball. svn path=/trunk/; revision=40043
2011-11-29Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-4/+4
svn path=/trunk/; revision=40042
2011-11-29Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-22/+13
svn path=/trunk/; revision=40041
2011-11-29Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-2/+5
svn path=/trunk/; revision=40040
2011-11-29ArubaOS 6.x use a new GRE ID (0x9000) for communication between controller ↵Alexis La Goutte2-0/+2
and AP Add this new ID in GRE dissector The frame with the new GRE ID is not 802.11 frame such as 80XX GRE ID but a 802.3 frame with curious ethertype (8211 the same id with PAPI Protocol...) svn path=/trunk/; revision=40039
2011-11-29From c.David via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6527Alexis La Goutte5-20/+1027
corba dissector generator improvement Patch 2 : create a defaulf field hf_operationrequest which provides the requested operation on both the resquest and the reply messages. From me : Regenerate GIOP Plugins svn path=/trunk/; revision=40038
2011-11-29From c.David via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6527Alexis La Goutte4-339/+339
corba dissector generator improvement Patch 1 : field names is used in dissection instead of "enum value" which is not clear From me : Regenerate GIOP Plugins svn path=/trunk/; revision=40037
2011-11-29Gtk3 package byte highlighter colour fix.Anders Broman1-16/+23
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6624 svn path=/trunk/; revision=40036
2011-11-29Update value strings.Anders Broman2-143/+249
svn path=/trunk/; revision=40035
2011-11-29Add priority to the channel table.Martin Mathieson1-2/+10
svn path=/trunk/; revision=40034
2011-11-29Wireshark crashes in gsm_map dissectorAnders Broman2-43/+44
For now use Jeff's fix: "The REAL problem is that the GSM_MAP dissector is using this value_string_ext in the hf without BASE_EXT_STRING: { &hf_gsm_old_localValue, { "localValue", "gsm_old.localValue", FT_INT32, BASE_DEC, &gsm_old_GSMMAPOperationLocalvalue_vals_ext, 0, "OperationLocalvalue", HFILL }}, This, in turn, appears to be caused because OperationLocalValue is an alias for/of GSMMAPOperationLocalValue and only the latter is defined with .USE_VALS_EXT. I can fix it by doing: Index: asn1/gsm_map/gsm_map.cnf =================================================================== --- asn1/gsm_map/gsm_map.cnf (revision 39628) +++ asn1/gsm_map/gsm_map.cnf (working copy) @@ -54,6 +54,7 @@ #.USE_VALS_EXT GSMMAPOperationLocalvalue +OperationLocalvalue #.EXPORTS AddressString But it seems to be that asn2wrs should arguably be figuring this out on its own." svn path=/trunk/; revision=40033
2011-11-29Allow for, but don't yet use, GTK+ 2.24.Gerald Combs1-3/+3
svn path=/trunk/; revision=40032
2011-11-28Add newline at the end of the file.Martin Mathieson1-1/+1
svn path=/trunk/; revision=40031
2011-11-28Fix Checkapi found errors.Anders Broman3-10/+10
svn path=/trunk/; revision=40030
2011-11-28From Krishnamurthy Mayya:Anders Broman4-3/+97
Part of patch: 2. BFD extension has been added as per RFC 6428, to decode the BFD packet with ACH encapsulation(without IP/UDP header encapsulation). The channel type in ACH header identifies the BFD payload as BFD CC or CV packet. Also decoding for MPLS-TP source MEP-ID TLV in BFD CV packet has been added. applied with a change to add packet-bfd.h https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6610#add_comment svn path=/trunk/; revision=40029
2011-11-28From Krishnamurthy Mayya:Anders Broman1-3/+179
LSP Ping extension has been added as per RFC 6426, to decode the LSP Ping packet with ACH encapsulation(without IP/UDP header encapsulation). The channel type in ACH header identifies the LSP Ping packet. Also support for decoding new TLVs and Sub-TLVs defined in the RFC 6426 has been provided. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6610#add_comment svn path=/trunk/; revision=40028
2011-11-28From Krishnamurthy Mayya:Anders Broman1-3/+197
BFD extension has been added as per RFC 6428, to decode the BFD packet with ACH encapsulation(without IP/UDP header encapsulation). The channel type in ACH header identifies the BFD payload as BFD CC or CV packet. Also decoding for MPLS-TP source MEP-ID TLV in BFD CV packet has been added. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6610#add_comment svn path=/trunk/; revision=40027
2011-11-28from Shobhank Sharma:Anders Broman4-65/+91
- Removed some mpls preferences which are no longer relevant/needed like decode PWAC payloads as PPP traffic and assume all channel types except 0x21 are raw BFD. - MPLS extension from PW-ACH to MPLS Generic Associated Channel as per RFC 5586 - Updated Pseudowire Associated Channel Types as per http://www.iana.org/assignments/pwe3-parameters - Updated the VCCV bitmaps as per RFC 5885 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6574 svn path=/trunk/; revision=40026
2011-11-28Squelsh warnings.Anders Broman1-4/+4
svn path=/trunk/; revision=40025
2011-11-28Prevet a crash when dissecting linked TI.Anders Broman1-14/+37
svn path=/trunk/; revision=40024
2011-11-28let packet-gsm_a_gm.c dissect Protocol Configuration Options.Anders Broman1-65/+27
svn path=/trunk/; revision=40023
2011-11-28Use __except(EXCEPTION_EXECUTE_HANDLER) rather than __except(TRUE);Bill Meier1-2/+2
Strictly speaking, it appears that __except(EXCEPTION_EXECUTE_HANDLER) rather than __exept(TRUE) should be used altho in actuality there's no difference since TRUE (as defined by GLIB) == EXCEPTION_EXECUTE_HANDLER. svn path=/trunk/; revision=40022
2011-11-28Allow configuration protocol to configure UL priority for channels in mapping.Martin Mathieson2-11/+46
This value then gets used in call_rlc_dissector(). svn path=/trunk/; revision=40021
2011-11-27Don't specify an hf[] item as using a range_string when it's really using a ↵Bill Meier1-1/+1
value_string. Fixes Bug #6618 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6618 svn path=/trunk/; revision=40020
2011-11-27Fix Coverity CID 1330, "Missing Break" by adding some /* FALLTHRU */'s.Chris Maynard1-0/+2
svn path=/trunk/; revision=40019
2011-11-27Fix a typo.Chris Maynard1-1/+1
svn path=/trunk/; revision=40018
2011-11-27Various Minor cleanup:Bill Meier7-413/+704
- Remove unneeded #includes; - Use val_to_str_const() in several places; - Reformat long lines; - Fix whitepace and indentation. svn path=/trunk/; revision=40016
2011-11-27Use preference port (not defined constant) when port against src port;Bill Meier1-2/+4
Remove unneeded #include. svn path=/trunk/; revision=40014
2011-11-27[Automatic manuf, services and enterprise-numbers update for 2011-11-27]Gerald Combs3-6/+162
svn path=/trunk/; revision=40013
2011-11-26Fix a wrong copy/paste....Alexis La Goutte1-1/+1
svn path=/trunk/; revision=40011
2011-11-26From Kari Vatjus-Anttila via ↵Alexis La Goutte4-2/+865
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5956 kNet (KristalliNet) dissector for Wireshark kNet is a connection-oriented network protocol for transmitting arbitrary application-specific messages between network hosts. It is designed primarily for applications that require a method for rapid space-efficient real-time communication. kNet is an application-level protocol which can be ran either over UDP, TCP or SCTP transports. From me : * Add Modelines information and fix trailing whitespace * Merge packet-knet.h in packet-knet.c * Make Checkhf happy * Fix Clang/GCC Warning about unused variable * Add Authors info & CMakeList.txt svn path=/trunk/; revision=40010
2011-11-26There is now an early (source only) Win32 version of GTK3 available.Jörg Mayer1-1/+3
svn path=/trunk/; revision=40009
2011-11-26Don't pass 'len' to the dissect routine since we know there's only 1 byte ↵Chris Maynard1-1/+1
present. This fixes the buildbot complaint about using 'len' uninitialized. svn path=/trunk/; revision=40008
2011-11-26Add a few casts to try to make the buildbots happy.Chris Maynard1-4/+4
svn path=/trunk/; revision=40007
2011-11-26IP option improvements. While fixing bug 6561, I noticed some deficiencies ↵Chris Maynard1-147/+575
in the IP options dissection capabilities. Testing of these changes primarily used the capture file attached to that bug report as there were several IP options present. Packet 222 is an interesting packet that illustrates some of the new filters available. Further work is needed, but hopefully this is a good first step. Fuzz testing was performed using my own "menagerie". svn path=/trunk/; revision=40006
2011-11-25Add missing '*/' to the end of a comment: Fixes gcc compile error.Bill Meier1-1/+1
svn path=/trunk/; revision=40005
2011-11-25From Ivan Lawrow: Added IEEE 802.15.4-2003 AES-CCM security modesBill Meier3-54/+126
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4912 svn path=/trunk/; revision=40004
2011-11-25Mark drep parameter as unused in the epm_dissect_tower_data functionStephen Fisher1-1/+1
since its use was removed in r40002. svn path=/trunk/; revision=40003
2011-11-25From Wido Kelling: EPM tower UUID must be interpreted always as little endian.Bill Meier1-1/+2
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6368 svn path=/trunk/; revision=40002
2011-11-25Add the reason for a UL ReTx (PDCCH retx grant or PHICH NACK).Martin Mathieson3-2/+26
svn path=/trunk/; revision=40001
2011-11-25Remove unused code (Add in Revision 836)Alexis La Goutte1-30/+1
Fix also some Clang/GCC Warning about unused variable svn path=/trunk/; revision=40000
2011-11-24Fix H.460.18 and H.460.19 integration into H.245Tomas Kukosa4-60/+72
svn path=/trunk/; revision=39998