aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2009-08-04Warning fix: comma at end of enumjmayer1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29289 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-04Don't exit with an error if we can't find the svn executable.gerald1-14/+14
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29288 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Rework an assignment to keep static analyzers from complaining.gerald2-8/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29287 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Remove a couple of unused variables.gerald1-4/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29286 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Add some null checks.gerald2-2/+46
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29285 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03More minor cleanups:wmeier1-43/+46
- Move proto_register to near the end of the file as per convention; - Remove unneeded #include <epan/reassemble.h>; - Comment out unused ett[] array and associated; git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29284 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Minor cleanups:wmeier1-62/+56
- Comment out code which creates two dissector tables and then stores a preference value in each of them; AFAICT the tables are not accessed elsewhere; - Comment out the no longer required prefs callback specification in proto_register; - "if (... == -1)" not req'd in proto_register; - Remove unused proto_reg_wimax function. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29283 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Various minor cleanups:wmeier1-263/+250
- Do all find_dissector() calls only once during proto_reg_handoff (not each time a sub-dissector is called when dissecting frames). - Move proto_register & proto_reg_handoff to the end of the file as per convention; - Move a global variables to be local; - Change a global variable to be static; - Remove unneeded multiple #include <string.h> - Remove an unneeded variable and a few unneeded lines of code. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29282 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Clean up indentation somewhat.guy1-207/+207
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29281 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03From Gerasimos Dimitriadis:jake2-20/+105
Added decoding support for the High Layer Compatibility IE in DTAP and updated the relevant part in Q.931. Also some minor enhancements in Q.931. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29280 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Thou shalt terminate thy value_string arrays with {0, NULL}.guy1-1/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29279 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Add a null pointer check. Remove some unused variables.gerald1-24/+24
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29278 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03From Ivan Sy:jake1-4/+86
Support for Host Identity Protocol (HIP) Domain Name System (DNS) Extension. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29277 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Remove 1 commented-out #include inadvertantly committed.wmeier1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29276 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Add some debug code (commented out) to check for duplicate dissector port ↵wmeier1-0/+14
registrations, git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29275 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Reword some help text slightly.wmeier1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29274 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Use find_dissector() instead of create_dissector_handle();wmeier1-7/+6
Fix some indentation. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29273 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Do find_dissector_table() in proto_reg_handoff().wmeier1-2/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29272 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03(Trivial) Fix two typos.wmeier2-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29271 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Added missing packet-usb-hid.hstig1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29270 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-03Handle usb_hid_item_usage_vals as range_string.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29269 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-02Do dissector_add() only if port non-zero; register dissector for "decode-as".wmeier1-2/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29268 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-02packet-stun2 registers for TCP & UDP port 3478 so packet-stun need not ↵wmeier1-1/+2
register for same. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29267 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-02Change default range from 1401,1401 to 1401 so that the port isn't ↵wmeier1-1/+1
double-registered. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29266 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-02Don't do dissector_add twice on TCP port 3689;wmeier1-2/+2
packet-daap requests registration on that port via http_dissector_add and thus packet-http does not need to do a default registration on that port. Also: fix a typo in a comment. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29265 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-02[Automatic manuf and enterprise-numbers update for 2009-08-02]gerald2-13/+205
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29262 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-02Remove unneeded #include <epan/emem.h>; fix some indentation.wmeier1-5/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29261 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-02Add additional cypher types.jake1-1/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29260 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-02Fix for bug 3800:jake1-1/+3
Correctly track the size of Feedback Control Information in Payload specific RTCP feedback packet. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29259 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-01Remember Msg3 bytes and compare with Msg4 Contention Resolution bodies.martinm1-6/+211
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29258 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-31Fix indentation, get rid of a comment that might no longer apply (dumpguy1-2/+1
*what* as hex? The stuff we now display as generic fields?). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29257 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-31From Adam Nielsen via bug 3659:gerald4-7/+847
Here is a patch against SVN that implements preliminary support for USB HID devices. At the moment it only dissects the initial set up packets (which you will see if you hotplug a keyboard or mouse.) The patch also fixes a minor bug in the USB dissector code which reported certain packets as malformed due to miscounting bytes, and it reports control packet data and padding data in a more user-friendly manner. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29256 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-31Completely remove an unused variable, don't just comment it outguy1-1/+0
(especially with a C++/C99-style comment that not all compilers used to compile Wireshark accept). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29255 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-31From Holger Freyther via bug 3776:gerald2-42/+53
Part 1: Rename packet-gsm_abis_ip.c to packet-gsm_ipa.c. Part 2: Rename to the content to match the filename. Part 3: Add GSM A/SCCP support to the packet-gsm_ipa.c dissector Adjusted patch to take laforge's comment into account. Use guint16 for the length and use the ntohs routine to convert the length. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29254 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-31From Ivan Sy via bug 3797:gerald1-0/+3
Support for SPF RR (RFC 4408) - this has the same format as TXT RR (see section 3.1.1) below. Currently wireshark 1.2.1 shows this as Unknown type 99 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29253 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-31From Ivan Sy:jake1-2/+60
Add support for SSHFP RR (RFC 4255). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29252 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-31Include packet_info.h before ui_utils.h since we just started passing asfisher1-0/+1
packet_info structure to one of the functions. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29251 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-31From Ivan Sy:jake1-5/+5
NAPTR RR (RFC 3403) replacement MUST be a fully qualified domain-name. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29250 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-30Remove more unused variables.gerald15-40/+20
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29249 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-30Fix warnings:guy1-9/+3
the behavior of x = x++ is undefined by the ANSI C standard - they obviously just meant x++; get rid of unused variables. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29248 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-30From swapnil:etxrab1-91/+1503
Packet-gtpv2.c dissector extended to support more IE's. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29247 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-30From Kovarththanan Rajaratnam via bug 3506:gerald2-9/+10
The exception throwing code in except.c/h should be annotated with "noreturn" to indicate that they never return. Running static analysis on Wireshark without this annotation causes a lot of false positives since these analyzers assume that the exception handling code are ordinary functions that will eventually return. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29246 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-30Remove a couple of unused variables.gerald2-7/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29245 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-30Show backoff indicator value in subheader tree root.martinm1-4/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29244 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-30Remove some unused variable assignments.gerald4-15/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29243 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-30Remove some unused variables.gerald1-27/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29242 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-29Fix a typowmeier1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29241 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-29Function dissect_zcl_attr_data_type() unused: comment it outwmeier1-0/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29240 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-29Fix a potential crash and do various other minor changes:wmeier1-96/+83
- Fix an hf[] entry which had an invalid "strings" field which could cause a crash; - Remove unneeded #includes; - Make most functions & etc static; - Remove declarations for functions never defined; - Fix certain comments to refer to the correct function names; - Change global variable to be local to proto_reg_handoff... - ... git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29239 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-29From Kovarththanan Rajaratnam:etxrab2-21/+33
This patch fixes the "Decode as" crash. We now freeze the packetlist before attempting to clear it. This way we don't have to issue a row deleted signal either. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29238 f5534014-38df-0310-8fa8-9805f1628bb7