aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
AgeCommit message (Collapse)AuthorFilesLines
2011-07-04From Guido Reismueller:Anders Broman2-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 svn path=/trunk/; revision=37892
2011-07-04From Kluchnikov Ivan:Anders Broman1-1/+5
Update wimax DCD Message mac version values. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6069 svn path=/trunk/; revision=37891
2011-07-04From Kluchnikov Ivan:Anders Broman2-4/+16
Wrong length of items in wimax Compressed DL-MAP and UL-MAP. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6067 svn path=/trunk/; revision=37890
2011-07-04From Kluchnikov Ivan:Anders Broman3-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 svn path=/trunk/; revision=37889
2011-07-03From Roland Knall:Anders Broman1-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 svn path=/trunk/; revision=37882
2011-06-28Replace all strerror() with g_strerror().Stig Bjørlykke2-3/+3
Remove our local strerror implementation. Mark strerror as locale unsafe API. This fixes bug 5715. svn path=/trunk/; revision=37812
2011-06-08Remove theinterlinki plugin dir as it's now a builtin dissector.Anders Broman13-767/+0
svn path=/trunk/; revision=37611
2011-06-08From Michael Mann:Anders Broman3-261/+0
Make interlink built-in dissector (from plugin). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6005 svn path=/trunk/; revision=37610
2011-06-08Remove the sercosiii plugin dir as it's now a builtin dissector.Anders Broman9-766/+0
svn path=/trunk/; revision=37608
2011-06-07Move packet-sercosiii.c to be a builtin dissector.Anders Broman12-3539/+0
svn path=/trunk/; revision=37597
2011-06-06From Michael Mann:Anders Broman3-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 svn path=/trunk/; revision=37574
2011-05-26Add SVN Id and GPL. Minor whitespace cleanup.Chris Maynard1-23/+43
svn path=/trunk/; revision=37412
2011-05-26Add the possibillity of adding custom extra dist files.Anders Broman1-0/+1
svn path=/trunk/; revision=37411
2011-05-19Don't assign a value to a variable which is then never used: Coverity 1160 ↵Bill Meier1-4/+4
[UNUSED] svn path=/trunk/; revision=37290
2011-05-19Fix another old style function declaration warningJörg Mayer1-1/+1
svn path=/trunk/; revision=37281
2011-04-26get_host_ipaddr() was returning numeric addresses in host byte orderGerald Combs1-1/+0
and hostnames in network byte order. Have it return everything in network byte order. svn path=/trunk/; revision=36873
2011-04-26Remove const qualifier to name, abbrev and blurb to pacify the buildbots.Chris Maynard1-3/+3
svn path=/trunk/; revision=36860
2011-04-25Get rid of some unnecessary casts that just provoke uninterestingGuy Harris1-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 *". svn path=/trunk/; revision=36856
2011-04-25More fun with GArrays: cast away some warnings that don't report realGuy Harris1-2/+2
alignment problems and that wouldn't even happen if the "data" member of a GArray were a "void *". svn path=/trunk/; revision=36855
2011-04-22Assume the tags are mallocated, so they're properly aligned. Cast awayGuy Harris1-1/+1
the warnings. svn path=/trunk/; revision=36816
2011-04-22Use the return value of proto_item_add_subtree(): put the filter masks in ↵Jeff Morriss1-2/+4
their own subtree (as it appears was intended). svn path=/trunk/; revision=36811
2011-04-22Fix (latest) Dead Store (Dead nested assignment) Warning found by ClangAlexis La Goutte1-3/+2
svn path=/trunk/; revision=36802
2011-04-22From http://www.wireshark.org/lists/wireshark-dev/201104/msg00231.htmlAlexis La Goutte1-18/+18
Always use the returned tree value of proto_tree_add_subtree (and not the item!) svn path=/trunk/; revision=36801
2011-04-21Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-4/+1
svn path=/trunk/; revision=36772
2011-04-21Fix Dead Store (Dead nested assignment) Warning found by Clang Alexis La Goutte1-1/+1
svn path=/trunk/; revision=36756
2011-04-21Fix Dead Store (Dead nested assignment) Warning found by Clang Alexis La Goutte1-1/+1
svn path=/trunk/; revision=36754
2011-04-19CID 1161: Not really used variableJörg Mayer1-4/+1
svn path=/trunk/; revision=36725
2011-04-19CID 1162: Not really used variable Jörg Mayer1-2/+1
svn path=/trunk/; revision=36724
2011-04-17Fix Unused varaiable warnings.Anders Broman4-20/+7
CID 1163 - 1166 svn path=/trunk/; revision=36675
2011-04-12Rework whitespace.Bill Meier1-971/+973
svn path=/trunk/; revision=36583
2011-04-12Don't assign to a proto_item * if the value won't be used: Coverity 1158 & 1159.Bill Meier1-5/+4
svn path=/trunk/; revision=36581
2011-04-12localtime() can return a NULL ptr.Bill Meier1-9/+15
svn path=/trunk/; revision=36580
2011-04-06Either remove or use unused values found by Coverity. Fixes CIDsGerald Combs3-5/+5
1169-1172. svn path=/trunk/; revision=36500
2011-03-31Don't dereference a NULL pointer. Fixes CID 426.Chris Maynard1-1/+1
svn path=/trunk/; revision=36424
2011-03-29Add a missing break.Anders Broman1-0/+1
CID 487 svn path=/trunk/; revision=36403
2011-03-29Add a missing break.Anders Broman1-0/+1
CID 488 svn path=/trunk/; revision=36402
2011-03-29Add a missing break.Anders Broman1-0/+1
CID 490 svn path=/trunk/; revision=36401
2011-03-29Added FALLTHRU comment to avoid a "missing break" warning.Anders Broman1-0/+1
CID 489 svn path=/trunk/; revision=36400
2011-03-29Don't assign proto_item pointers that are not used.Martin Mathieson1-2/+2
Coverity 1174 svn path=/trunk/; revision=36395
2011-03-28Don't use prohibited strncpy(). Use g_strlcpy() instead. Ensures that "orig"Chris Maynard1-2/+2
will be NULL-terminated, even if len >= SCS_HUGE_SIZE. svn path=/trunk/; revision=36383
2011-03-27Removed uneeded 'continue'.Bill Meier1-1/+0
Fixes Coverity 815 ("UNREACHABLE"). svn path=/trunk/; revision=36367
2011-03-24Don't assign to a proto_item* if the value won't be used: Coverity 1155-1156;Bill Meier1-86/+86
Also: - Fix a few cases of SET_HIDDEN on the wrong item. (The SET_HIDDEN was being done on an already hidden item). - Minor indentation cleanup; svn path=/trunk/; revision=36315
2011-03-24Don't assign to a proto_item* if the value won't be used: Coverity 1151-1154;Bill Meier1-95/+95
svn path=/trunk/; revision=36312
2011-03-24Don't assign to a proto_item* if the value isn't to be used: Coverity 1173;Bill Meier1-135/+141
Also: - Fix 2 cases of an item attached to the wrong subtree; - "localize" & rename some variable definitions; - Minor indentation cleanup. svn path=/trunk/; revision=36310
2011-03-23Removed unused parameter to parseServiceNodeId.Stig Bjørlykke3-6/+4
Coverity 596. svn path=/trunk/; revision=36283
2011-03-23Rewrote check for szStr in dissect_ICBAPhysicalDevice_get_LogicalDevice_rqst.Stig Bjørlykke1-1/+1
Coverity 535. svn path=/trunk/; revision=36282
2011-03-23dont assign to a proto_item* unless we are going to use the valueRonnie Sahlberg1-7/+7
coverity 1157 svn path=/trunk/; revision=36276
2011-03-22Allocate correct size of range.Stig Bjørlykke1-2/+2
Coverity 718. svn path=/trunk/; revision=36262
2011-03-22Fix a typoJeff Morriss1-1/+1
svn path=/trunk/; revision=36249
2011-03-22Coverity 1167Ronnie Sahlberg1-4/+29
Dont assign tlv_item unless we need to dereference it. Also push the variable deeper into the scope where it is used isntead of function wide scope. svn path=/trunk/; revision=36243