aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/sv/packet-sv-template.c
Commit message (Collapse)AuthorAgeFilesLines
* Move a couple of time-related modules into wsutil.Jeff Morriss2013-06-251-1/+0
| | | | | | | A bunch of files didn't really need to include these header files so remove the include line rather than changing it. svn path=/trunk/; revision=50154
* Convert ASN.1 dissectors to use filterable expert info.Michael Mann2013-06-031-0/+10
| | | | | | NOTE: Kerberos ASN.1 template was updated, but not generated to source. svn path=/trunk/; revision=49707
* -Wmissing-prototypesAnders Broman2013-03-281-0/+2
| | | | svn path=/trunk/; revision=48609
* #if 0 out unused codeAnders Broman2013-01-101-3/+6
| | | | svn path=/trunk/; revision=47017
* From an.huang:Anders Broman2013-01-101-0/+2
| | | | | | | | | | | | | (1) support for optional attribute in Sample Value: datSet (0x81), refrTm (0x84), smpRate (0x86), smpMod (0x88). New attribute in 9-2 Ed2 (2) Data (0x87) decoded as PhsMeas in 9-2 LE(Lite Edition) recommemdation is removed, now the data is decoded as simply OctString, just as 9-2, further details should refer to the data set definition and Table 14 in Ed1 / Table 15 in Ed2 Encoding for the basic data types; https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5696 svn path=/trunk/; revision=47016
* We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss2012-09-201-3/+1
| | | | svn path=/trunk/; revision=45015
* Update Free Software Foundation address.Jakub Zawadzki2012-06-281-1/+1
| | | | | | (COPYING will be updated in next commit) svn path=/trunk/; revision=43536
* Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte2012-01-131-1/+0
| | | | svn path=/trunk/; revision=40466
* Fix encoding arg for a proto_tree_add_bitmask() function call.Bill Meier2011-10-241-1/+1
| | | | svn path=/trunk/; revision=39540
* For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier2011-10-211-1/+1
| | | | | | Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
* Convert 'encoding' parameter of certain proto_tree_add_item() calls in asn1 ↵Bill Meier2011-10-061-5/+5
| | | | | | | | | | | | | | | | | | | | | | | 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=39294
* Rename the routines that handle dissector tables with unsigned integerGuy Harris2010-12-201-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
* Set Subversion properties right.Jaap Keuter2010-06-021-1/+1
| | | | svn path=/trunk/; revision=33058
* From Michael Bernhard via bug 3398 with minor fixups:Gerald Combs2010-06-011-0/+335
I've created a ASN.1 dissector for the IEC 61850 Sampled Values protocol. It dissects ethernet frames of the IEC 61850-9-2LE specification form the UCA International User Group. There is also a new TAP for tshark (-R sv) which extracts the important information of the frame and allows to create plots (with external tools) of the sampled values. I've developed under Linux (Ubuntu 8.10) but everything should be in place for successful compilation under Windows. It would be great if this dissector could be included in wireshark. I'm looking forward for your comments. svn path=/trunk/; revision=33039