aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
AgeCommit message (Collapse)AuthorFilesLines
2007-08-28Disable unistim for now: it used port 5000 unconditionallyJörg Mayer1-1/+1
and that collied with tapa. Please add a check. svn path=/trunk/; revision=22702
2007-08-27Add .c.obj:: inference rule (to cause "batch compile") Bill Meier23-1/+67
svn path=/trunk/; revision=22696
2007-08-25get users of oid_resolv to use the new oids, rollout packet-snmp.cLuis Ontanon3-2/+4
svn path=/trunk/; revision=22651
2007-08-24Clear out any remaining references to the h223 plugin. Replace theGerald Combs1-16/+0
references to h223 in README.plugins with agentx since it's small and no one seems to be in a hurry to move it to epan/dissectors. svn path=/trunk/; revision=22641
2007-08-24complete the death of the h223 pluginRichard van der Hoff12-2306/+0
svn path=/trunk/; revision=22635
2007-08-24move packet-srp into the core (from the h223 plugin)Richard van der Hoff3-279/+2
svn path=/trunk/; revision=22634
2007-08-23List additional request for command presentationJaap Keuter1-1/+2
svn path=/trunk/; revision=22605
2007-08-23in preparation for de-pluginising h223, move golay code support into ↵Richard van der Hoff4-310/+2
libwireshark svn path=/trunk/; revision=22603
2007-08-20Add the UNISTIM plugin to Wireshark.Jaap Keuter22-3/+6151
svn path=/trunk/; revision=22558
2007-08-16fix return types, hopefully this will make the osx buildbot happyUlf Lamping1-2/+2
svn path=/trunk/; revision=22531
2007-08-16experimental feature: dissector filtersUlf Lamping1-0/+57
add the possibility, that a dissector writer can provide (usually non-trivial) display filters specific for the protocol in question (with an example in packet-dcerpc-pn-io.c), that will appear in the GUI svn path=/trunk/; revision=22530
2007-08-04Add a script as a front-end for Flex, to work around various problems,Guy Harris4-1/+12
such as the fact that Flex strips all but the last component of the "-o" argument, and that it doesn't generate a header file to declare routines the generated lexical analyzer defines. Use that script when building lexical analyzers, and, for each lexical analyzer, include the generated header file in the generated analyzer. svn path=/trunk/; revision=22446
2007-08-03mark some parameters as unusedUlf Lamping1-2/+2
svn path=/trunk/; revision=22445
2007-08-03- add PDInterfaceFSUDataAdjust blockUlf Lamping1-44/+339
- start to implement an AR conversation handler svn path=/trunk/; revision=22444
2007-08-01Add a Makefile.nmake.inc file, to hold rules etc. used by multipleGuy Harris1-6/+3
Makefile.nmake files; currently, it has the (F)lex-to-C rule and a .SUFFIXES pseudo-rule to add .l to the list of suffixes. Have Makefile.nmake files with .l.c rules include Makefile.nmake.inc to get that rule. The names Makefile.am.inc and Makefile.nmake.inc aren't necessarily the right names for the files in question. Use $(PACKAGE) in the Mate plugin's Makefile, rather than "mate". svn path=/trunk/; revision=22437
2007-08-01Add a Makefile.am.inc file, to hold rules etc. used by multipleGuy Harris1-7/+2
Makefile.am files; currently, it has the (F)lex-to-C rule. Have Makefile.am files with .l.c rules include Makefile.am.inc to get that rule. svn path=/trunk/; revision=22436
2007-08-01Clean up the WiMax Mac-to-Mac dissector code.Jaap Keuter3-92/+26
svn path=/trunk/; revision=22435
2007-08-01Use a common .l.c rule for running Flex on .l files, just as is done onGuy Harris1-2/+6
UN*X. svn path=/trunk/; revision=22434
2007-07-31update PTCP dissection to latest specification draftUlf Lamping3-283/+240
svn path=/trunk/; revision=22432
2007-07-31add helper function dissect_pn_int32()Ulf Lamping2-0/+20
svn path=/trunk/; revision=22431
2007-07-30Add comments to various %option items to explain what they're doing. Guy Harris2-3/+23
Move the %options to the beginning if they weren't already there, and put them in the same order in all files. Add "prefix=" options to .l files that don't already have them, so we don't have to pass a "-P" option. Add "never-interactive" and "noyywrap" options to our lexical analyzers, to remove extra isatty() checks and to eliminate the need for yywrap() from the Flex library. Get rid of %option nostdinit - that's the default. Add .l.c: rules to Makefile.am files, replacing the rules for specific .l files. Have those rules all check that $(LEX) is set. Update the address for the FSF. svn path=/trunk/; revision=22424
2007-07-25Initialize a couple of variables to prevent a couple (false, I think) "could ↵Jeff Morriss1-2/+4
be used uninitialized" warnings from GCC svn path=/trunk/; revision=22401
2007-07-25fix unused parameter warning by adding _U_Ulf Lamping1-1/+1
svn path=/trunk/; revision=22400
2007-07-24from HPfrommer@hilscher.com:Ulf Lamping1-35/+57
I’ve fixed a bug in the Profinet-Dissector (plugins/profinet/packet-dcerpc-pn-io.c). In PROFINET IO DCE RPC write-requests, only the first IR frame dataset in PDIRFrameData was dissected. I’ve fixed the problem, now all IR frame datasets are dissected into individual sub-trees. svn path=/trunk/; revision=22398
2007-07-23remove ProvCRID from expert info output, so the composite view is more compactUlf Lamping1-1/+1
svn path=/trunk/; revision=22386
2007-07-23add dissection of blocks:Ulf Lamping1-1/+83
{ 0x021E, "CheckSyncDifference"}, { 0x021F, "CheckMAUTypeDifference"}, svn path=/trunk/; revision=22385
2007-06-03(Minor) Use _WIN32 (instead of WIN32) like the rest of Wireshark Bill Meier1-1/+1
svn path=/trunk/; revision=22030
2007-05-29Use G_GINT64_MODIFIER, rather than the PRI[douxX]64 macros, for GLibGuy Harris3-17/+17
routines and routines using those routines. GLib might use different modifiers for 64-bit quantities than the platform's C library does. svn path=/trunk/; revision=21990
2007-05-29Add some casts to fix my build.Martin Mathieson1-7/+8
I'm not sure why no-one else saw those warnings and failed with -Werror... svn path=/trunk/; revision=21980
2007-05-29From David Howells :Sebastien Tandel1-1/+1
Fix compilation failures when building wireshark-0.99.6-SVN-21916 on an x86_64-unknown-linux-gnu target with gcc version 4.1.2 20070403 (Red Hat 4.1.2-8). The failures fall into two categories: (1) Casts between pointers and 32-bit integers without an intermediary cast via 'long' or 'unsigned long'. This results in a compiler warning complaining about casts between a pointer and an integer of a different size. (2) Passing values to "%lld" or similar printf-style format options that the compiler thinks are a different size. Such values need to be cast to 'long long' or 'unsigned long long'. svn path=/trunk/; revision=21975
2007-05-27Use $(PLUGIN_LDFLAGS) for LDFLAGS.Guy Harris20-20/+20
svn path=/trunk/; revision=21963
2007-05-27Clean up white space.Guy Harris21-41/+60
svn path=/trunk/; revision=21962
2007-05-27Get rid of trailing blank lines.Guy Harris19-19/+0
svn path=/trunk/; revision=21961
2007-05-27Use tvb_reported_length() to get the amount of data we should look at;Guy Harris45-180/+180
the number of bytes in the packet or subset of the packet is the reported length, tvb_length() just gives you the amount of that data that was actually captured. Include <glib.h>, not <gmodule.h>, even in plugins. Fix the version numbers in the rc files. svn path=/trunk/; revision=21960
2007-05-27Clean up white space.Guy Harris2-3/+3
svn path=/trunk/; revision=21959
2007-05-27Include wimax_tlv.h the same way packet-m2m.c does.Guy Harris1-1/+1
svn path=/trunk/; revision=21958
2007-05-27wmxtypes.h is part of the m2m plugin, not the wimax plugin.Guy Harris1-2/+1
svn path=/trunk/; revision=21957
2007-05-26Squelch some unused parameter warnings.Guy Harris7-14/+14
svn path=/trunk/; revision=21956
2007-05-26Flag some parameters as unused.Guy Harris1-3/+3
svn path=/trunk/; revision=21955
2007-05-26Get rid of unused parameter.Guy Harris1-4/+4
svn path=/trunk/; revision=21954
2007-05-26Convert to the new style of building plugins; hopefully this'll fix theGuy Harris6-56/+308
rest of the distcheck issues. svn path=/trunk/; revision=21953
2007-05-26Missing bits and fixes to get the buildbot green again.Graeme Lunt3-12/+74
svn path=/trunk/; revision=21952
2007-05-26Get rid of another item that's now handled automatically.Guy Harris1-6/+0
svn path=/trunk/; revision=21951
2007-05-26Get rid of the old-style plugin registration stuff.Guy Harris1-18/+0
svn path=/trunk/; revision=21950
2007-05-26Go with a Makefile.common as other plugins have, and tweak theGuy Harris3-13/+198
Makefile.nmake and Makefile.am files to more closely resemble the ones for other plugins. (This should fix at least one of the distcheck problems, namely that wmxtypes.h apparently wasn't getting put into the distribution.) svn path=/trunk/; revision=21949
2007-05-25From Mike Harvey: Support for WiMAX and the WiMAX M2M encapsulation protocol.Gerald Combs65-2/+39147
Add support for WiMAX and M2M to various makefiles and installer files. Add basic support for M2M to randpkt. svn path=/trunk/; revision=21945
2007-05-22Trivial warning fixes:Jörg Mayer4-4/+4
opcua: warning: function declaration isn't a prototype rest: comma at end of enumerator svn path=/trunk/; revision=21885
2007-05-22"make maintainer-clean" cleans up everything that "make distclean" does;Guy Harris1-3/+0
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-21Make files more generic.Jaap Keuter16-18/+18
svn path=/trunk/; revision=21864
2007-05-16from Gerhard Gappmeier (ULFL: only slightly changed the unused prevention):Ulf Lamping9-33/+123
I updated the files for the build process to fit the current wireshark version. I don't know much about it so a just copied the missing parts from another module. I'm not sure of it's right, so please have a look at it. Modifications: * added plugin.rc.in * added moduleinfo.nmake * updated Makefile.am/nmake/common * removed unused variable from opcua_application_layer.c * fixed unused parameter warning in opcua.c I tested it on Windows with VC6 and on Gentoo linux with gcc 3.4.6. svn path=/trunk/; revision=21802