aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
AgeCommit message (Collapse)AuthorFilesLines
2011-12-01Fix:jmayer1-5/+0
trunk/plugins/profinet/packet-pn-rt.c: In function ‘IsDFP_Frame’: trunk/plugins/profinet/packet-pn-rt.c:182:9: error: ‘u8SFCycleCounter’ undeclared (first use in this function) trunk/plugins/profinet/packet-pn-rt.c:182:9: note: each undeclared identifier is reported only once for each function it appears in git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40063 f5534014-38df-0310-8fa8-9805f1628bb7
2011-12-01packet-dcerpc-pn-io.c:8735: warning: unused variable 'iSubFrameLen'etxrab1-2/+2
packet-dcerpc-pn-io.c:8734: warning: unused variable 'iTotalLen' git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40061 f5534014-38df-0310-8fa8-9805f1628bb7
2011-12-01From Wido Kelling:etxrab3-148/+214
Enhancements to profinet decoding (IEC 61158) V2.3. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6605 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40058 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-29From c.David via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6527alagoutte4-16/+1016
corba dissector generator improvement Patch 2 : create a defaulf field hf_operationrequest which provides the requested operation on both the resquest and the reply messages. From me : Regenerate GIOP Plugins git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40038 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-29From c.David via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6527alagoutte3-337/+337
corba dissector generator improvement Patch 1 : field names is used in dissection instead of "enum value" which is not clear From me : Regenerate GIOP Plugins git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40037 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-18Regenerate GIOP dissector plugins (after change in generator !) for fix ↵alagoutte4-9493/+4689
Warning found by Clang (>100 !) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39934 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-18Regenerate GIOP dissector plugins (after change in generator !) with ↵alagoutte2-1074/+958
following commmands : :~/wireshark/tools$ ../idl2wrs ../idl/cosnaming.idl > ../plugins/giop/packet-cosnaming.c :~/wireshark/tools$ ../idl2wrs ../idl/coseventcomm.idl > ../plugins/giop/packet-coseventcomm.c :~/wireshark/tools$ ../idl2wrs ../idl/parlay/Parlay.idl > ../plugins/giop/packet-parlay.c :~/wireshark/tools$ ../idl2wrs ../idl/tango.idl > ../plugins/giop/packet-tango.c For packet-cosnaming.c, only some white return change For packet-parley.c, lot of change but only the functions is not in the same order...?! (Order change in 17911) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39932 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-18Append a path-separator to the plugins directory so xcopy doesn't get ↵cmaynard1-1/+1
confused as to whether it's copying each plugin to a file or a directory. I.e., hopefully to avoid this situation: Does wireshark-gtk2\plugins\1.7.1-SVN-39918 specify a file name or directory name on the target (F = file, D = directory)? git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39922 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-15OK, *that's* what Clang Cat was going on about:guy1-1/+2
packet-dcerpc-pn-io.c:8438:17: warning: Although the value stored to 'prm_flag2' is used in the enclosing expression, the value is never actually read from 'prm_flag2' OK, thanks for telling me that, technically, prm_flag1 = prm_flag2 = 0; can be implemented by storing the 0 into prm_flag1 directly rather than storing 0 into prm_flag2 and copying it to prm_flag1. Yes, you can haz cheeseburger. I guess it would matter if we were actually depending on some side-effect of fetching prm_flag2, but we're not. Rewrite this one to squelch the complaint. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39841 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-12Fix some additional [-Wunused-but-set-variable]wmeier1-22/+14
Fix some spelling typos git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39805 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-12fix [-Wunused-but-set-variable]etxrab1-6/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39802 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.wmeier17-120/+120
Also: remove trailing whitespace for a number of files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39503 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-20Use ENC_NA as proto_tree_add_item() encoding arg for FT_ETHER hf[] field type.wmeier13-25/+25
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39490 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-18Do some more conversions of proto_tree_add_item() 'encoding' argwmeier22-395/+395
(previously missed). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39450 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-15Convert plugin files proto_tree_add_item() 'encoding' arg for field types ↵wmeier9-35/+35
FT_STRING, 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). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39429 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-10Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵wmeier20-690/+690
plugins/*: 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_BOOLEAN FT_IPv4 FT_EUI64 FT_GUID FT_UINT_STRING Also: For type FT_ITv6 use ENC_NA. (This was missed in an earlier SVN) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39329 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵wmeier97-2126/+2126
plugin 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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39292 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-05Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵wmeier49-449/+449
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|1|0|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39262 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-26More white space cleanup.guy1-64/+64
We need the PDU length to find stuff at the end; use tvb_reported_length(), *not* tvb_length(), to get it, so we're not confused by a snapshot length. Rename it "pdu_len" to make that clear. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39162 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-26The fragment data is almost certainly not a text string, so don't makeguy1-2/+3
it an FT_STRING. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39160 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-26Use ENC_ values in proto_tree_add_item() calls.guy1-345/+347
Get rid of the code that attempts to deal with the FCS; if the link-layer dissector hasn't removed the FCS, either: 1) the link-layer dissector is buggy and should be fixed; or 2) the link-layer dissector doesn't know whether there's an FCS and you have to tell it by setting a preference (and if there is no such preference, one needs to be added). The code in question was causing errors when the link-layer dissector was removing the FCS when it's known to be present, as it should do. Get rid of 4-space tabs in favor of spaces. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39158 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-31Second try to move crc routines to libwsutil.stig2-2/+2
This time keep the tvb routines in epan. Now we can use common crc routines outside epan. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38810 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-30Revert r38800, as the crc routines contains some tvb functions.stig2-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38803 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-30Move all crc routines to libwsutil.stig2-2/+2
This way we can use the crc routines in wiretap. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38800 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-08Add a comment about the uncommented glib deprecated warnings.jmayer1-0/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38403 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-07mate_grammar.lemon:jmayer3-3/+5
- Fix a bug my previous patch introduced. mate/: - Unset G_DISABLE_DEPRECATED for the mate files. CMakeLists.txt configure.in: - Build with -DG_DISABLE_DEPRECATED so further usage of deprecated glib functions will be detected. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38393 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-07Replace deprecated glib functions.jmayer1-1/+1
In order to compile the whole project with -DG_DISABLE_DEPRECATED the mate plugin needs to replace its usage of GMemChunk. All other places should be clean. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38392 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-03Fix gcc 4.6 "set but not used [-Wunused-but-set-variable]" warnings.wmeier1-14/+14
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38321 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-29Make it compile.stig1-4/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38254 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-29Get rid of non-ASCII characters.guy1-1878/+1877
Clean up white space. Clean up capitalization a bit. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38253 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-29Get it compiling.tuexen2-4/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38250 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-29From Wido Kelling:etxrab3-229/+1494
Add Dissection of newly released PNIO IEC 61158 Version 2.3. From me use ENC_BIG_ENDIAN. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6154 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38249 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-21Fix gcc 4.6 "set but not used [-Wunused-but-set-variable]" warnings.wmeier8-38/+14
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38150 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-19Add a DREP_LITTLE_ENDIAN for the DCE RPC endianness bit in the dataguy1-18/+18
representation. Use it rather than a raw 0x10. Add a DREP_ENC_INTEGER() macro that takes a pointer to the data representation and returns either ENC_LITTLE_ENDIAN or ENC_BIG_ENDIAN; use it for the encoding argument to proto_tree_add_item(), rather than just the AND of drep[0] and DREP_LITTLE_ENDIAN, as it's not a boolean any more, and for string values we'll be supporting character encodings as well and thus won't be able to trust that the 0x10 bit will mean "little endian". Use ENC_NA for some other encoding values, i.e. for FT_BYTES and the like. Fix a couple of places in the DCOM dissector where we were passing the byte-order bit rather than the field value to proto_tree_add_uint_format(). Clean up white space. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38128 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-06From Kluchnikov Ivan:etxrab1-1/+58
Decoding Phy Synchronization Field in wimax DL-MAP and Compressed DL-MAP. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6068 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37921 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-04From Guido Reismueller:etxrab2-0/+593
This patch includes alle modem capabilities from DOCSIS 3.0 Until now only modem capabilities 1-12 where implemented. Now all capabilities 1-40 are included. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6070 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37892 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-04From Kluchnikov Ivan:etxrab1-1/+5
Update wimax DCD Message mac version values. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6069 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37891 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-04From Kluchnikov Ivan:etxrab2-4/+16
Wrong length of items in wimax Compressed DL-MAP and UL-MAP. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6067 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37890 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-04From Kluchnikov Ivan:etxrab3-9/+11
Wireshark cannot decode wimax compressed DL-MAP without FCH burst. Function is_down_link use the base station address (bs_address), which is set in function dissect_wimax_fch_decoder. Changed function is_down_link, it use packet_info->p2p_dir for check if packet is downlink. packet_info->p2p_dir set in GSMTAP. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6066 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37889 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-03From Roland Knall:etxrab1-0/+13
implement a named dissector for the PN/IO sub-protocol for Profinet, as well as a heuristic dissector ("pn_io"), other protocols can attach too. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6062 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37882 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-28Replace all strerror() with g_strerror().stig2-3/+3
Remove our local strerror implementation. Mark strerror as locale unsafe API. This fixes bug 5715. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37812 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-08Remove theinterlinki plugin dir as it's now a builtin dissector.etxrab13-767/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37611 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-08From Michael Mann:etxrab3-261/+0
Make interlink built-in dissector (from plugin). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6005 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37610 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-08Remove the sercosiii plugin dir as it's now a builtin dissector.etxrab9-766/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37608 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-07Move packet-sercosiii.c to be a builtin dissector.etxrab12-3539/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37597 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-06From Michael Mann:etxrab3-23/+1568
I made 2 changes when merging the source into a single file: 1. Changed filtername to "siii" to match display filter fields (was quicker than changing all display filter fields to "sercosiii" 2. Converted the "ett_siii arrays" to a single value. Each subtree doesn't need its own ett_ value. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5990 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37574 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-26Add SVN Id and GPL. Minor whitespace cleanup.cmaynard1-23/+43
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37412 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-26Add the possibillity of adding custom extra dist files.etxrab1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37411 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-19Don't assign a value to a variable which is then never used: Coverity 1160 ↵wmeier1-4/+4
[UNUSED] git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37290 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-19Fix another old style function declaration warningjmayer1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37281 f5534014-38df-0310-8fa8-9805f1628bb7