aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2013-02-10If we're using git, try pulling the SVN revision out of the commit body.Gerald Combs1-16/+23
svn path=/trunk/; revision=47619
2013-02-10Clean up some warnings (including warnings that ultimately come fromGuy Harris1-60/+56
trying to modify string constants, which isn't necessarily guaranteed to work). svn path=/trunk/; revision=47618
2013-02-10Comment out numerous unused hf_.... instances found by checkhf.Bill Meier33-114/+272
svn path=/trunk/; revision=47617
2013-02-10Add %option noinput to some Flex files, as we aren't using the input()Guy Harris2-0/+10
routine and thus don't need to have it generated - and as it produces warnings of a routine defined but not used, we don't want to have it generated. svn path=/trunk/; revision=47616
2013-02-10Use the same destination directory everywhere. If we're building an NSISGerald Combs2-8/+13
package, assume that we're doing a "release" build. svn path=/trunk/; revision=47615
2013-02-10Fix a (benign) ERROR: NO ARRAY: opcua/opcua.c, hf_opcua_reassembled_dataBill Meier1-2/+1
svn path=/trunk/; revision=47614
2013-02-10Add %option noinput to a bunch of Flex files, as we aren't using theGuy Harris8-1/+46
input() routine and thus don't need to have it generated - and as it produces warnings of a routine defined but not used, we don't want to have it generated. Squelch a casting-const-away warning. svn path=/trunk/; revision=47613
2013-02-10Update a comment; tweak a RegEx.Bill Meier1-4/+3
svn path=/trunk/; revision=47612
2013-02-10Add an "Unregistered hf!" hint to DISSECTOR_ASSERT((guint)hfindex < ↵Bill Meier1-1/+1
gpa_hfinfo.len). svn path=/trunk/; revision=47611
2013-02-10Add svn properties and modelines.Evan Huus1-1144/+1156
svn path=/trunk/; revision=47608
2013-02-10Comment out various unused hf_... instances found by checkhf.Bill Meier4-222/+314
svn path=/trunk/; revision=47607
2013-02-10Add Bitcoin dissectorMichael Mann3-0/+1146
From Christian Svensson, bug 6000 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6000) Cleaned up from the original patch svn path=/trunk/; revision=47606
2013-02-10Fix ERROR: NO ARRAY: packet-tlv.c, hf_docsis_rcv_mod_enc_ctr_freq_asgnBill Meier1-0/+5
##Backport 1.6, 1.8 svn path=/trunk/; revision=47605
2013-02-10[Automatic manuf, services and enterprise-numbers update for 2013-02-10]Gerald Combs3-37/+290
svn path=/trunk/; revision=47602
2013-02-10Add support for IGNORE message type to SSH2 dissector + some minor cleanupMichael Mann1-47/+40
I was hoping this would fix bug 5064 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5064), but all it did was fix the malformed part of the dissector. svn path=/trunk/; revision=47601
2013-02-09Pull in a comment from the MATE plugin Makefile.nmake.Guy Harris1-1/+13
Pull in a change from that Makefile.nmake to keep us from trying to hand a header file to the compiler as if it were a C source file. svn path=/trunk/; revision=47600
2013-02-09Put NODIST_ at the beginning of macro names, as was done for the pluginsGuy Harris8-33/+33
directory. svn path=/trunk/; revision=47599
2013-02-09Remove blank lines separately after removing comments rather than asBill Meier1-3/+2
part of the 'remove comments' regex. Fixes a bug introduced in SVN #47583 which broke '#if 0' handling. svn path=/trunk/; revision=47598
2013-02-09We *did* fix the APIs used.Guy Harris1-1/+0
svn path=/trunk/; revision=47597
2013-02-09Pull the definition of NODIST_HEADER_FILES up intoGuy Harris5-12/+6
plugins/Makefile.common.inc. svn path=/trunk/; revision=47596
2013-02-09Fix EXTRA_BINFILES for CMake + OS X.Gerald Combs1-1/+1
svn path=/trunk/; revision=47595
2013-02-09"make maintainer-clean" should nuke all generated files.Guy Harris1-0/+2
svn path=/trunk/; revision=47594
2013-02-09Get rid of trailing tabs, make comments more similar.Guy Harris2-3/+3
svn path=/trunk/; revision=47593
2013-02-09Define GENERATED_HEADER_FILES in plugins/Makefile.common.inc.Guy Harris2-4/+7
svn path=/trunk/; revision=47592
2013-02-09plugins/Makefile.common.inc defines NODIST_SRC_FILES, andGuy Harris1-4/+0
plugins/mate/Makefile.common includes it, so there's no need to define it in plugins/mate/Makefile.common. svn path=/trunk/; revision=47591
2013-02-09Define FLEX_GENERATED_SRC_FILES and LEMON_GENERATED_SRC_FILES inGuy Harris2-4/+16
plugins/Makefile.common.inc, and use it in plugins/mate/Makefile.nmake. svn path=/trunk/; revision=47590
2013-02-09plugins/Makefile.common.inc should already be definingGuy Harris1-4/+0
GENERATED_SRC_FILES, and plugins/mate/Makefile.common includes it, so it shouldn't need to define GENERATED_SRC_FILES itself. svn path=/trunk/; revision=47589
2013-02-09The type of the second argument to g_snprintf() is gulong. (It *should*Guy Harris1-2/+2
have been size_t, just as with Boring Old Snprintf; what were they thinking?) svn path=/trunk/; revision=47588
2013-02-09Add casts to make it build on win64.Anders Broman1-2/+2
svn path=/trunk/; revision=47587
2013-02-09Try to fix the makefiles to be able to build mate after distclean.Anders Broman2-3/+15
svn path=/trunk/; revision=47586
2013-02-09Cleanup: Ditch CamelCase; use braces around references.Bill Meier1-181/+184
svn path=/trunk/; revision=47585
2013-02-09Fix a syntax error which causes a compile errorBill Meier1-1/+1
(altho not in my version Cygwin Perl V5.14 for some reason). svn path=/trunk/; revision=47584
2013-02-09Tweaks to RegEx usage for consistency and performance (andBill Meier1-66/+72
to fix a monor bug or two). svn path=/trunk/; revision=47583
2013-02-09Get rid of a '- i' that appears to have been accidentally inserted in r47581.Evan Huus1-1/+1
i is definitely not initialized at that point (GCC was complaining), and there seems to be no need to subtract anything from the value in question in the first place. svn path=/trunk/; revision=47582
2013-02-09Get rid of g_sprintf() and strncpy() usage - this is somewhat of a hack,Guy Harris1-56/+73
but this should really be completely rewritten to use the packet-ber.c routines and to handle strings better (code that handles strings should not be written in a language that doesn't have a string datatype; that eliminates C as a possibility, and that's not a bug, that's a feature...). svn path=/trunk/; revision=47581
2013-02-09The stats_tree plugin doesn't, at present, have anything that looks forGuy Harris1-2/+2
register routines, so there's no plugin.c and hence no plugin.obj. svn path=/trunk/; revision=47580
2013-02-09Make the other plugin makefiles use the new style introduced in the MATEGuy Harris41-405/+571
makefiles. svn path=/trunk/; revision=47579
2013-02-09Add MIME types for more capture file formats Wireshark understands:Jeff Morriss2-1/+46
- Radcom WAN/LAN Analyzer - Wildpackets/Etherpeek/Airopeek tagged/v9 - Visual Networks - Network Instruments Observer - Accellent/InfoVista 5view The magic matching comes from Fedora's magic file, the file extensions from wiretap. (Yes, I just made the application/x-* MIME types up.) svn path=/trunk/; revision=47578
2013-02-09From Lori Tribble via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8306Evan Huus1-1/+6
Fix decoding the Loop Object Setpoint-Reference property in BACapp packets. svn path=/trunk/; revision=47577
2013-02-09Try to figure out if we built the rest of the project using Autotools orGerald Combs1-3/+25
CMake automatically. svn path=/trunk/; revision=47576
2013-02-08Fix bug 8056: Maximum value of Duration should be 32767.Chris Maynard1-9/+26
Duration/ID field dissected according to Table 8-3 of 8.2.4.2 of the IEEE std. 802.11-2012: http://www.techstreet.com/cgi-bin/pdf/free/1071374/802.11-2012.pdf https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8056 #BACKPORT(1.8, 1.6) svn path=/trunk/; revision=47575
2013-02-08Also build the source RPM. Clean up after ourselves when done.Jeff Morriss1-2/+3
svn path=/trunk/; revision=47574
2013-02-08Add a directory name preference type (PREF_DIRNAME) and registrationGerald Combs12-32/+177
routine (prefs_register_directory_preference). Add PREF_FILENAME and PREF_DIRNAME support to the Qt module preferences. Change a couple of preferences to directory names. Clean up some names and default settings. svn path=/trunk/; revision=47573
2013-02-08Handle SIP "resends" within SDP. This is to handle "duplicate" OFFERs so ↵Michael Mann3-0/+18
they don't end up being handled by setup_sdp_transport() because the current frame couldn't match a request (due to duplication). setup_sdp_transport_resend() should be unnecessary once all higher layers use setup_sdp_transport() and the "registration" code within dissect_sdp() is removed. svn path=/trunk/; revision=47572
2013-02-08Use the new realloc API when growing a string-buffer.Evan Huus1-5/+1
svn path=/trunk/; revision=47571
2013-02-08Fix error: no newline at end of filePascal Quantin1-1/+1
svn path=/trunk/; revision=47570
2013-02-08Fix code to delete blank lines to remove all blank lines;Bill Meier1-7/+7
Update some Perl usage. svn path=/trunk/; revision=47569
2013-02-08Fix Coverity CID 973548: Dereference null return value.Chris Maynard1-2/+2
#BACKPORT(1.8, 1.6) svn path=/trunk/; revision=47568
2013-02-08Try using cpuid also for __x86_64__ if compiled with GCC.Anders Broman1-8/+53
svn path=/trunk/; revision=47567
2013-02-08Change string to filename preference so file can be browsed forMichael Mann1-1/+1
svn path=/trunk/; revision=47566