aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-scriptingservice.c
AgeCommit message (Collapse)AuthorFilesLines
2011-11-12Remove some unneeded 'if(pinfo)' tests;Bill Meier1-8/+2
Remove some unneeded forward refs. svn path=/trunk/; revision=39809
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-1/+1
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, ↵Bill Meier1-2/+2
FT_STRINGZ, FT_UINT_STRING as follows: 1. If there's no character encoding (ENC_ASCII, ...) specified then use ENC_ASCII. 2. For all but FT_UINT_STRING, always use ENC_NA (replacing any existing True/1/FALSE/0 /ENC_BIG_ENDIAN/ENC_LITTLE_ENDIAN). svn path=/trunk/; revision=39426
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵Bill Meier1-5/+5
non-autogenerated epan/dissectors: Specifically: Replace FALSE|0 and TRUE|1 by ENC_BIG_ENDIAN|ENC_LITTLE_ENDIAN as the encoding parameter for proto_tree_add_item() calls which directly reference an item in hf[] which has a type of: FT_UINT8 FT_UINT16 FT_UINT24 FT_UINT32 FT_UINT64 FT_INT8 FT_INT16 FT_INT24 FT_INT32 FT_INT64 FT_FLOAT FT_DOUBLE svn path=/trunk/; revision=39288
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵Bill Meier1-2/+2
reference an hf item (in hf[] with types: FT_NONE FT_BYTES FT_IPV6 FT_IPXNET FT_OID Note: Encoding field set to ENC_NA only if the field was previously TRUE|FALSE|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN svn path=/trunk/; revision=39260
2011-02-10Obtained from Thomas Dreibholz: Update SCTP PPIDs.Michael Tüxen1-2/+4
svn path=/trunk/; revision=35895
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-1/+1
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2010-07-08From Thomas Dreibholz via bug 4989:Stig Bjørlykke1-18/+42
Extend the SSP dissector to support the SSP Environment message type. svn path=/trunk/; revision=33476
2010-01-13From Didier Gautheron:Anders Broman1-1/+1
check_col.diff Remove redundant calls to check_col() if it guards only one columns function with one parameter after the column type. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 svn path=/trunk/; revision=31519
2009-12-14From Thomas Dreibholz:Jaap Keuter1-35/+68
Add the missing message type "SSP Not Ready" to the SSP protocol dissector. In addition to that: - make it a proper new style dissector, reporting dissected length, - fix Keep Alive Ack, taking into account the indicated length. svn path=/trunk/; revision=31260
2009-09-18From Thomas Dreibholz:Jaap Keuter1-1/+11
Added support for decoding the Info field in the SSP Ready message. svn path=/trunk/; revision=29980
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-5/+5
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero svn path=/trunk/; revision=28770
2009-04-08More ethereal --> wiresharkBill Meier1-2/+2
svn path=/trunk/; revision=27994
2008-02-06From Thomas Dreibholz (bug 2248):Stig Bjørlykke1-0/+174
Add a dissector for the Scripting Service Protocol provided as part of the RSPLIB package. RSPLIB is an Open Source implementation of the upcoming Reliable Server Pooling standard. The scripting service is an application for load distribution, based on Reliable Server Pooling. From me: Shorten the protocol name to SSP. svn path=/trunk/; revision=24276