aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2009-08-04Don't exit with an error if we can't find the svn executable.Gerald Combs1-14/+14
svn path=/trunk/; revision=29288
2009-08-03Rework an assignment to keep static analyzers from complaining.Gerald Combs2-8/+8
svn path=/trunk/; revision=29287
2009-08-03Remove a couple of unused variables.Gerald Combs1-4/+2
svn path=/trunk/; revision=29286
2009-08-03Add some null checks.Gerald Combs2-2/+46
svn path=/trunk/; revision=29285
2009-08-03More minor cleanups:Bill Meier1-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; svn path=/trunk/; revision=29284
2009-08-03Minor cleanups:Bill Meier1-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. svn path=/trunk/; revision=29283
2009-08-03Various minor cleanups:Bill Meier1-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. svn path=/trunk/; revision=29282
2009-08-03Clean up indentation somewhat.Guy Harris1-207/+207
svn path=/trunk/; revision=29281
2009-08-03From Gerasimos Dimitriadis:Jaap Keuter2-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. svn path=/trunk/; revision=29280
2009-08-03Thou shalt terminate thy value_string arrays with {0, NULL}.Guy Harris1-1/+2
svn path=/trunk/; revision=29279
2009-08-03Add a null pointer check. Remove some unused variables.Gerald Combs1-24/+24
svn path=/trunk/; revision=29278
2009-08-03From Ivan Sy:Jaap Keuter1-4/+86
Support for Host Identity Protocol (HIP) Domain Name System (DNS) Extension. svn path=/trunk/; revision=29277
2009-08-03Remove 1 commented-out #include inadvertantly committed.Bill Meier1-1/+0
svn path=/trunk/; revision=29276
2009-08-03Add some debug code (commented out) to check for duplicate dissector port ↵Bill Meier1-0/+14
registrations, svn path=/trunk/; revision=29275
2009-08-03Reword some help text slightly.Bill Meier1-2/+2
svn path=/trunk/; revision=29274
2009-08-03Use find_dissector() instead of create_dissector_handle();Bill Meier1-7/+6
Fix some indentation. svn path=/trunk/; revision=29273
2009-08-03Do find_dissector_table() in proto_reg_handoff().Bill Meier1-2/+3
svn path=/trunk/; revision=29272
2009-08-03(Trivial) Fix two typos.Bill Meier2-2/+2
svn path=/trunk/; revision=29271
2009-08-03Added missing packet-usb-hid.hStig Bjørlykke1-0/+1
svn path=/trunk/; revision=29270
2009-08-03Handle usb_hid_item_usage_vals as range_string.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=29269
2009-08-02Do dissector_add() only if port non-zero; register dissector for "decode-as".Bill Meier1-2/+8
svn path=/trunk/; revision=29268
2009-08-02packet-stun2 registers for TCP & UDP port 3478 so packet-stun need not ↵Bill Meier1-1/+2
register for same. svn path=/trunk/; revision=29267
2009-08-02Change default range from 1401,1401 to 1401 so that the port isn't ↵Bill Meier1-1/+1
double-registered. svn path=/trunk/; revision=29266
2009-08-02Don't do dissector_add twice on TCP port 3689;Bill Meier1-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. svn path=/trunk/; revision=29265
2009-08-02[Automatic manuf and enterprise-numbers update for 2009-08-02]Gerald Combs2-13/+205
svn path=/trunk/; revision=29262
2009-08-02Remove unneeded #include <epan/emem.h>; fix some indentation.Bill Meier1-5/+4
svn path=/trunk/; revision=29261
2009-08-02Add additional cypher types.Jaap Keuter1-1/+7
svn path=/trunk/; revision=29260
2009-08-02Fix for bug 3800:Jaap Keuter1-1/+3
Correctly track the size of Feedback Control Information in Payload specific RTCP feedback packet. svn path=/trunk/; revision=29259
2009-08-01Remember Msg3 bytes and compare with Msg4 Contention Resolution bodies.Martin Mathieson1-6/+211
svn path=/trunk/; revision=29258
2009-07-31Fix indentation, get rid of a comment that might no longer apply (dumpGuy Harris1-2/+1
*what* as hex? The stuff we now display as generic fields?). svn path=/trunk/; revision=29257
2009-07-31From Adam Nielsen via bug 3659:Gerald Combs4-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. svn path=/trunk/; revision=29256
2009-07-31Completely remove an unused variable, don't just comment it outGuy Harris1-1/+0
(especially with a C++/C99-style comment that not all compilers used to compile Wireshark accept). svn path=/trunk/; revision=29255
2009-07-31From Holger Freyther via bug 3776:Gerald Combs2-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. svn path=/trunk/; revision=29254
2009-07-31From Ivan Sy via bug 3797:Gerald Combs1-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 svn path=/trunk/; revision=29253
2009-07-31From Ivan Sy:Jaap Keuter1-2/+60
Add support for SSHFP RR (RFC 4255). svn path=/trunk/; revision=29252
2009-07-31Include packet_info.h before ui_utils.h since we just started passing aStephen Fisher1-0/+1
packet_info structure to one of the functions. svn path=/trunk/; revision=29251
2009-07-31From Ivan Sy:Jaap Keuter1-5/+5
NAPTR RR (RFC 3403) replacement MUST be a fully qualified domain-name. svn path=/trunk/; revision=29250
2009-07-30Remove more unused variables.Gerald Combs15-40/+20
svn path=/trunk/; revision=29249
2009-07-30Fix warnings:Guy Harris1-9/+3
the behavior of x = x++ is undefined by the ANSI C standard - they obviously just meant x++; get rid of unused variables. svn path=/trunk/; revision=29248
2009-07-30From swapnil:Anders Broman1-91/+1503
Packet-gtpv2.c dissector extended to support more IE's. svn path=/trunk/; revision=29247
2009-07-30From Kovarththanan Rajaratnam via bug 3506:Gerald Combs2-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. svn path=/trunk/; revision=29246
2009-07-30Remove a couple of unused variables.Gerald Combs2-7/+0
svn path=/trunk/; revision=29245
2009-07-30Show backoff indicator value in subheader tree root.Martin Mathieson1-4/+9
svn path=/trunk/; revision=29244
2009-07-30Remove some unused variable assignments.Gerald Combs4-15/+9
svn path=/trunk/; revision=29243
2009-07-30Remove some unused variables.Gerald Combs1-27/+0
svn path=/trunk/; revision=29242
2009-07-29Fix a typoBill Meier1-1/+1
svn path=/trunk/; revision=29241
2009-07-29Function dissect_zcl_attr_data_type() unused: comment it outBill Meier1-0/+4
svn path=/trunk/; revision=29240
2009-07-29Fix a potential crash and do various other minor changes:Bill Meier1-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... - ... svn path=/trunk/; revision=29239
2009-07-29From Kovarththanan Rajaratnam:Anders Broman2-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. svn path=/trunk/; revision=29238
2009-07-29Add pinfo to new_packet_list_append() this should give us the abillityAnders Broman3-3/+4
to store (most) of the underlying data rather than the strings in the store and render it when we need it, thuss saving storage space and loading time. Idealy we should not store the complete fdata or pinfo structures but rather just the data relevant to the currently selected/used columns. I'm not entierly sure how to accomplish that however. Dynamically allocated array to hold pointers to the actual data? svn path=/trunk/; revision=29237