aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2007-05-22Add a note about the recent change in "--disable-wireshark" behavior to Gerald Combs2-2/+11
the release notes. Add a couple of updates to the packaging doc. svn path=/trunk/; revision=21891
2007-05-22With at least some compilers, "enum QUALITY_TYPE" is unsigned, and theGuy Harris1-15/+14
compiler warns about checking whether it's >= 0, as it always is. Don't do that check - we don't use "type" until the switch statement, and GCC should issue a warning if not all valid "enum QUALITY_TYPE" values are handled in the switch statement. Sort the items in the switch statement in the order in which they appear in the enum definition, so it's clearer that it covers all values. svn path=/trunk/; revision=21890
2007-05-22Prepare for the use of the new -X parameter for BER encoded protocols.Anders Broman69-9728/+10806
svn path=/trunk/; revision=21889
2007-05-22Don't generate enums that end in a commaJörg Mayer2-5/+10
svn path=/trunk/; revision=21888
2007-05-22Code cleanups, some parsing errors fixed, added more object typesGraham Bloice1-172/+229
svn path=/trunk/; revision=21887
2007-05-22revert changes of r21879 which fix gcc bugs. These changes was from mipv4Sebastien Tandel1-35/+27
improvements patch. svn path=/trunk/; revision=21886
2007-05-22Trivial warning fixes:Jörg Mayer6-6/+6
opcua: warning: function declaration isn't a prototype rest: comma at end of enumerator svn path=/trunk/; revision=21885
2007-05-22Make sure we compare against something ("") in caseJörg Mayer1-1/+1
GTK_CONFIG is empty. svn path=/trunk/; revision=21884
2007-05-22If GTK+ isn't available, fail unless the user explicitly specifiedGuy Harris1-9/+7
"--disable-wireshark"; if they haven't explicitly said that they don't want Wireshark, assume they do, and that they won't be happy if, when the build finishes, they don't have Wireshark and weren't made sufficiently aware that they wouldn't get it. People who want to build TShark for machines that don't have GTK+ installed, but don't want to build Wireshark because they can't install GTK+ on the build/target machine, can still do that; they just have to explicitly specify "--disable-wireshark" to do it. svn path=/trunk/; revision=21883
2007-05-22"make maintainer-clean" cleans up everything that "make distclean" does;Guy Harris5-18/+25
there's no need for files in DISTCLEANFILES to be in MAINTAINERCLEANFILES as well. In epan, split the generated source files into those that should be cleaned by "make distclean" and those that shouldn't, and have DISTCLEANFILES include only the ones that should be cleaned by "make distclean" and have MAINTAINERCLEANFILES include the ones that shouldn't be cleaned by "make distclean". This should fix bug 1595. The generated source files don't need to be in EXTRA_DIST. Use LIBWIRESHARK_DISTCLEAN_GENERATED_SRC and LIBWIRESHARK_NODISTCLEAN_GENERATED_SRC in epan/Makefile.nmake. svn path=/trunk/; revision=21882
2007-05-22improve FIND_FIRST2 useability in the same way as in the previous Ronnie Sahlberg1-10/+31
patches svn path=/trunk/; revision=21881
2007-05-22remember the object name from a QUERY_PATH_INFO and show it as a Ronnie Sahlberg2-0/+12
generated item in the response. also show the infolevel in the response as a generated item svn path=/trunk/; revision=21880
2007-05-22fix gcc 4.2 warnings (qualifier type)Sebastien Tandel2-28/+36
svn path=/trunk/; revision=21879
2007-05-22fix an incorrect shiftRonnie Sahlberg1-2/+1
svn path=/trunk/; revision=21878
2007-05-22add empty_tcp_streamBill Meier1-0/+1
svn path=/trunk/; revision=21877
2007-05-22Don't explicitly set the main window name unless you're changing theGuy Harris3-7/+35
state to "no packets", "file open", or "live capture in progress". Instead, to update the main window title when the user-specified prefix for the title changes: save the un-decorated title as a data value attached to the main window in set_main_window_name(); have a new routine to update the title, which fetches the un-decorated title, decorates it, and sets the title to the decorated value. This fixes bug 1608. svn path=/trunk/; revision=21876
2007-05-22show the QUERY_FS_INFO level as a generated item in the response packetRonnie Sahlberg1-1/+3
svn path=/trunk/; revision=21875
2007-05-22add the level of interest to the dissection of ↵Ronnie Sahlberg1-0/+4
QUERY_PATH_INFO/QUERY_FILE_INFO responses as a generated item svn path=/trunk/; revision=21874
2007-05-22add the disposition to the data we store for how a fid is openedRonnie Sahlberg2-2/+8
svn path=/trunk/; revision=21873
2007-05-22Fix bug #1600 in the Win32 file dialog (it was fixed for the GTK file dialog ↵Stephen Fisher1-5/+5
in SVN revision 21807). svn path=/trunk/; revision=21872
2007-05-22Add new functions from SVN revision 21867 to libwireshark.def to get Windows ↵Stephen Fisher1-0/+2
builds going again svn path=/trunk/; revision=21871
2007-05-22Have the follow code keep track of whether there's any data in the TCPGuy Harris3-3/+18
stream, and, if there isn't, pop up a dialog indicating that there isn't any data in the stream. This fixes bug 1604. svn path=/trunk/; revision=21870
2007-05-21From Rob Casey a dissector for the KingFisher protocolRonnie Sahlberg3-0/+422
svn path=/trunk/; revision=21869
2007-05-21From Sake Blok:Stephen Fisher4-12/+41
Fix for bug #1056 svn path=/trunk/; revision=21867
2007-05-21Have init_progfile_dir() also check whetherGuy Harris4-47/+67
WIRESHARK_RUN_FROM_BUILD_DIRECTORY is set and, if so and we weren't run with special privileges, set the running_in_build_directory_flag. Have it do the same if it finds ".libs" in the pathname of the program and we weren't run with special privileges, as that means it was probably run from the libtool wrapper script and presumably thus isn't an installed binary. This means that get_credential_info() has to be called before init_progfile_dir(). Clean up some indentation. svn path=/trunk/; revision=21866
2007-05-21put fwrite and fread into DISSECTOR_ASSERT in order to use the resultJörg Mayer1-2/+2
svn path=/trunk/; revision=21865
2007-05-21Make files more generic.Jaap Keuter16-18/+18
svn path=/trunk/; revision=21864
2007-05-21Fix warning about unused parameterJörg Mayer1-1/+1
svn path=/trunk/; revision=21863
2007-05-21Fix some (incorrect but unforseeable)Jörg Mayer2-2/+2
"might be used uninitialized" warnings. svn path=/trunk/; revision=21862
2007-05-21Hack to fix out of tree buildsJörg Mayer1-9/+9
svn path=/trunk/; revision=21861
2007-05-21additional smb2 fixes from metzeRonnie Sahlberg1-6/+40
svn path=/trunk/; revision=21860
2007-05-21from metzeRonnie Sahlberg1-77/+132
improved handling of smb2 errors svn path=/trunk/; revision=21859
2007-05-21add tracking of OFFSET/LENGTH to reads/writes so we can easily see in a ↵Ronnie Sahlberg2-11/+145
failed read/write what offset/length was requested svn path=/trunk/; revision=21858
2007-05-21since we now have a generic "track fid for transactions" we no longer need ↵Ronnie Sahlberg1-34/+0
to do this explicitely in the read/write functions svn path=/trunk/; revision=21857
2007-05-21track FIDs on a per transaction (request+response) basis and make sure the ↵Ronnie Sahlberg2-2/+35
FID is printed in both packets of a transaction. this makes filters such as "smb.file==foo.txt" work much better since they now show both the read/write request and also the response packets. this is similar to what we already do in nfs for filehandles svn path=/trunk/; revision=21856
2007-05-21there wre two fields in smb for filenames with the same display filer string.Ronnie Sahlberg1-1/+1
rename one of them to a different name so filtering works reliably svn path=/trunk/; revision=21855
2007-05-21make gtk1 compile againRonnie Sahlberg1-1/+2
svn path=/trunk/; revision=21854
2007-05-21make proto.c compile again after the recent changesRonnie Sahlberg1-0/+27
svn path=/trunk/; revision=21853
2007-05-21add workaround so that gtk1 compiles again thanks to stupid const mismatch ↵Ronnie Sahlberg1-0/+29
between gtk versions and warnings treaded as errors svn path=/trunk/; revision=21852
2007-05-21make the workaround use static so it wont dissapear when the frame endsRonnie Sahlberg1-1/+1
svn path=/trunk/; revision=21851
2007-05-21workaroung a warning for const that prevents gtk1 buildsRonnie Sahlberg1-1/+2
svn path=/trunk/; revision=21850
2007-05-21Reflect the name change of the .asn file.Guy Harris1-1/+1
svn path=/trunk/; revision=21849
2007-05-21Alter slightly so compile/link with airpcap works again....Bill Meier1-1/+2
svn path=/trunk/; revision=21848
2007-05-20The fix for ad-hoc WEP decryption in r21814 broke WPA. Replace it withGerald Combs3-1157/+1185
a better fix. Clean up whitespace while we're at it. svn path=/trunk/; revision=21847
2007-05-20Revert back to having a local copy of airpcap.h. This should fix buildingGerald Combs2-2/+909
with AirPcap. Re-define AIRPCAP_DIR. svn path=/trunk/; revision=21846
2007-05-20Update MAP_DialoguePDU to 3GPP TS 29.002 V8.1.0 (2007-03) update makefiles andAnders Broman11-203/+154
rename the asn file. TCAP ad Id and update makefiles. svn path=/trunk/; revision=21845
2007-05-20Remove cvs2svn:cvs-rev propertyJörg Mayer1-2/+0
Remove forward declaration of proto_reg_handoff_gdsdb (this is just a hack to suppress a warning that needs a proper solution for many many more files) svn path=/trunk/; revision=21844
2007-05-20Môshe van der Sterre:Jörg Mayer4-241/+1855
Replace the Interbase dissector by a Firebird/Interbase dissector. Me: Fix warnings about unused parameters Fix warnings about unused variables Fix warning about unused function Fix warning about mixed code and declaration Declare all dissection functions static Remove function declarations and move the switching function down instead. Update AUTHORS file Add $Id$ and email address to file header Fix filename in first comment line svn path=/trunk/; revision=21843
2007-05-20Add Id.Anders Broman2-0/+2
svn path=/trunk/; revision=21842
2007-05-20Undefine AIRPCAP_DIR to get the Windows build going again.Anders Broman2-3/+3
svn path=/trunk/; revision=21841