aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
AgeCommit message (Collapse)AuthorFilesLines
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
2011-04-26get_host_ipaddr() was returning numeric addresses in host byte ordergerald1-1/+0
and hostnames in network byte order. Have it return everything in network byte order. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36873 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-26Remove const qualifier to name, abbrev and blurb to pacify the buildbots.cmaynard1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36860 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-25Get rid of some unnecessary casts that just provoke uninterestingguy1-11/+11
warnings. More fun with GArrays: cast away some warnings that don't report real alignment problems and that wouldn't even happen if the "data" member of a GArray were a "void *". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36856 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-25More fun with GArrays: cast away some warnings that don't report realguy1-2/+2
alignment problems and that wouldn't even happen if the "data" member of a GArray were a "void *". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36855 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-22Assume the tags are mallocated, so they're properly aligned. Cast awayguy1-1/+1
the warnings. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36816 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-22Use the return value of proto_item_add_subtree(): put the filter masks in ↵morriss1-2/+4
their own subtree (as it appears was intended). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36811 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-22Fix (latest) Dead Store (Dead nested assignment) Warning found by Clangalagoutte1-3/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36802 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-22From http://www.wireshark.org/lists/wireshark-dev/201104/msg00231.htmlalagoutte1-18/+18
Always use the returned tree value of proto_tree_add_subtree (and not the item!) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36801 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-21Fix Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-4/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36772 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-21Fix Dead Store (Dead nested assignment) Warning found by Clang alagoutte1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36756 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-21Fix Dead Store (Dead nested assignment) Warning found by Clang alagoutte1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36754 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-19CID 1161: Not really used variablejmayer1-4/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36725 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-19CID 1162: Not really used variable jmayer1-2/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36724 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-17Fix Unused varaiable warnings.etxrab4-20/+7
CID 1163 - 1166 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36675 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-12Rework whitespace.wmeier1-971/+973
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36583 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-12Don't assign to a proto_item * if the value won't be used: Coverity 1158 & 1159.wmeier1-5/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36581 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-12localtime() can return a NULL ptr.wmeier1-9/+15
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36580 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-06Either remove or use unused values found by Coverity. Fixes CIDsgerald3-5/+5
1169-1172. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36500 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-31Don't dereference a NULL pointer. Fixes CID 426.cmaynard1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36424 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-29Add a missing break.etxrab1-0/+1
CID 487 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36403 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-29Add a missing break.etxrab1-0/+1
CID 488 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36402 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-29Add a missing break.etxrab1-0/+1
CID 490 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36401 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-29Added FALLTHRU comment to avoid a "missing break" warning.etxrab1-0/+1
CID 489 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36400 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-29Don't assign proto_item pointers that are not used.martinm1-2/+2
Coverity 1174 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36395 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-28Don't use prohibited strncpy(). Use g_strlcpy() instead. Ensures that "orig"cmaynard1-2/+2
will be NULL-terminated, even if len >= SCS_HUGE_SIZE. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36383 f5534014-38df-0310-8fa8-9805f1628bb7