aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
AgeCommit message (Collapse)AuthorFilesLines
2005-04-08Add a length check.Gerald Combs1-0/+1
svn path=/trunk/; revision=14030
2005-04-08From Martin MRonnie Sahlberg1-73/+168
updates to MGCP checked in per Anders B request hope it compiles svn path=/trunk/; revision=14028
2005-04-04From Cvetan IvanovRonnie Sahlberg1-11/+87
Updates to Q931, SM and ISUP svn path=/trunk/; revision=14013
2005-04-04Add a couple of length checks.Gerald Combs1-0/+8
svn path=/trunk/; revision=14008
2005-03-29From Martin Mathieson :Anders Broman1-28/+38
- allow dissector to show "MGCP/SDP" in the Protocol column, at least when the 'Display the number of MGCP messages' preference is switched off - when displaying the command verb, show in the tree the full verb name as well as the 4-letter code - show the links to response and request messages as being [generated] - fixed some indentation problems svn path=/trunk/; revision=13972
2005-03-27bugfix of a bug causing tethereal value output to fail:Ulf Lamping1-0/+1
value_string's must be terminated with { 0, NULL }!!! ...seems I've missed one place in my last commit! svn path=/trunk/; revision=13930
2005-03-27bugfix of a bug causing tethereal value output to fail:Ulf Lamping1-1/+4
value_string's must be terminated with { 0, NULL }!!! svn path=/trunk/; revision=13928
2005-03-26Add rules to build xml_lexer.c, and to remove it with "make distclean",Guy Harris1-0/+11
modeled after the rules in epan/dfilter/Makefile.nmake. svn path=/trunk/; revision=13919
2005-03-26xml_lexer.c is generated by Flex; we don't put files generated by FlexGuy Harris1-1737/+0
into the SVN tree, we just put the files from which they're generated into the SVN tree. svn path=/trunk/; revision=13915
2005-03-22Remove trailing ';'Jörg Mayer1-1/+1
svn path=/trunk/; revision=13865
2005-03-21Fix the names that were not consistent after the rename.Luis Ontanon2-6/+4
svn path=/trunk/; revision=13852
2005-03-21Add a cleanup call-back to the stats_tree.Luis Ontanon2-7/+7
svn path=/trunk/; revision=13851
2005-03-21This one is not in the makefiles (it's an example of stats_tree not realy a ↵Luis Ontanon1-14/+14
feature), make sure it works nontheless svn path=/trunk/; revision=13843
2005-03-21This one was missing from the last commitLuis Ontanon1-19/+19
svn path=/trunk/; revision=13841
2005-03-20From Oleg Terletsky:Guy Harris1-91/+47
get rid of a debugging printout; in "get_agentx_pdu_len()", fetch the payload length in the right byte order. If the NETWORK_BYTE_ORDER flag isn't set, that means "little-endian", not "host byte order" - the host on which I'm typing this is big-endian! That means that using the "g_hton[ls]()" macros on the result of "tvb_get_ntoh[ls]()" won't give you little-endian values on a big-endian host; just directly use "tvb_get_letoh[ls]()" to fetch little-endian values. Use "proto_tree_add_item()" whenever possible. svn path=/trunk/; revision=13834
2005-03-19Move request packets above (before) response ones, this seems to be more ↵Ulf Lamping1-6/+6
natural. Use a single HTTP submenu instead of two menu items with an entry and a submenu svn path=/trunk/; revision=13814
2005-03-19Fix capitalization of tree topicsUlf Lamping1-4/+4
svn path=/trunk/; revision=13813
2005-03-17Clean up.Lars Roland14-2311/+1
Remove obsolete plugin address table and related files. Remove related targets from various makefiles. svn path=/trunk/; revision=13787
2005-03-16Remove support for the old plugin api.Lars Roland1-22/+1
TODO: cleanup files in /trunk/plugins svn path=/trunk/; revision=13782
2005-03-13Don't use the result of "format_text()" as a format string argument, asGuy Harris1-1/+1
it might contain %'s; instead, use "%s" as the format string. svn path=/trunk/; revision=13741
2005-03-10Sync to recent changes in packet-rtp.h.Gerald Combs1-1/+1
svn path=/trunk/; revision=13703
2005-03-10An optimization.Luis Ontanon4-227/+219
Instead of first running the lexer to create a list of items and then iterate through this items to create the tree, just create the tree from the lexer. svn path=/trunk/; revision=13696
2005-03-10check in the newly generated lexer tooLuis Ontanon1-178/+116
svn path=/trunk/; revision=13687
2005-03-10- changed the lexer to return entire tags, refactored packet-xml.c for those ↵Luis Ontanon3-206/+110
changes - add markup_declarations and indent on doctype's [] - removed debugging code - renamed meta_tag into xmlpi svn path=/trunk/; revision=13686
2005-03-09Remove duplicate media types and add XML media types from packet-text-media.c.Olivier Biot1-3/+15
NOTE: we need to make sure that all the media types registered in the XML dissector get registered with the line-based text dissector as a fall-back when the XML dissector is disabled. svn path=/trunk/; revision=13683
2005-03-07remove remnants of the old plugin api from dissectors and pluginsLars Roland4-11/+9
svn path=/trunk/; revision=13656
2005-03-07set SVN keyword IDLars Roland1-1/+1
svn path=/trunk/; revision=13654
2005-03-07fix clean targetLars Roland1-1/+1
svn path=/trunk/; revision=13653
2005-03-07Call the "new-style init" routine for plugins a "register" routine, asGuy Harris24-147/+143
it serves the same purpose as the register routine in a built-in dissector, and don't require all dissectors to have one, as they might just be taps. Get rid of the stats tree's init routine, as it's just a tap, and as it doesn't do anything. Update the idl2eth Python script to generate plugins with register routines. svn path=/trunk/; revision=13644
2005-03-06- Add some media types to be dissected as xmlLuis Ontanon3-66/+74
- be more tollerant on how an XML document should look like svn path=/trunk/; revision=13639
2005-03-06Handle XNS IDP socket numbers.Guy Harris1-3/+4
Handle SMB-over-SPP. svn path=/trunk/; revision=13635
2005-03-06- get rid of some warningsLuis Ontanon2-36/+38
svn path=/trunk/; revision=13633
2005-03-06- use the string id of the node, not the integer id in tick_stat_nodeLuis Ontanon1-2/+2
svn path=/trunk/; revision=13632
2005-03-06Forgot this in the last checkinLuis Ontanon1-1/+0
svn path=/trunk/; revision=13630
2005-03-06Add stats_tree and xml plugins to the build processLuis Ontanon4-3/+61
svn path=/trunk/; revision=13629
2005-03-06oops, no new_plugin_init() now there isLuis Ontanon1-0/+2
svn path=/trunk/; revision=13620
2005-03-06The first part of the XML dissectorLuis Ontanon10-0/+2446
currently just a preety-printer with some generic fields svn path=/trunk/; revision=13619
2005-03-06remove plugin_init()Luis Ontanon1-6/+0
svn path=/trunk/; revision=13613
2005-03-06Change to new_plugin_init()Luis Ontanon1-3/+1
svn path=/trunk/; revision=13612
2005-03-05Preparations for dropping the old plugin api.Lars Roland69-371/+102
Introduce a new init routine for plugins, which does not take the plugin api table as an argument and allows etheral to distinguish between plugins using the old and the new api. Update README.plugins accordingly Change all g_warnings() in epan/plugins.c to report_failue(). On windows we do not have a log console open while loading the plugins, because a log console cannot be opened before the prefs have been read. Thus g_warnings() does not work for reporting problems with plugins. svn path=/trunk/; revision=13596
2005-03-01add the http_srv tap a tree to verify load distribution between several http ↵Luis Ontanon1-0/+62
servers and/or virtual hosts svn path=/trunk/; revision=13566
2005-02-28add the http_stats_tree,Luis Ontanon3-1/+204
a replacement for the current http tap listeners and a tree for requested hosts/uris svn path=/trunk/; revision=13556
2005-02-28Adapt the stats_tree example plugin to the last changesLuis Ontanon1-2/+3
svn path=/trunk/; revision=13550
2005-02-25add agentx plugin to the clean target and update the old plugin apiLars Roland7-6/+21
svn path=/trunk/; revision=13524
2005-02-25Fix the declaration of "dissect_ber_boolean()" to match the currentGuy Harris1-1/+1
version. svn path=/trunk/; revision=13512
2005-02-25Fix the declaration of "dissect_ber_boolean()" to match the currentGuy Harris1-1/+1
version. svn path=/trunk/; revision=13511
2005-02-25added a tree exampleLuis Ontanon1-3/+41
svn path=/trunk/; revision=13509
2005-02-24Change the plugin to be something useful.Luis Ontanon2-125/+51
Adds more taps, tests range nodes tests pivot nodes svn path=/trunk/; revision=13503
2005-02-24- fix a crash in new_avpl_strict_match when the operator avpl was emptyLuis Ontanon2-1/+4
- change the name of the preference mate.config_filename: into mate.config: svn path=/trunk/; revision=13488
2005-02-22avoid crashing when Debug_Cfg is set and no Payload is given for a PduLuis Ontanon1-1/+1
svn path=/trunk/; revision=13464