aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
AgeCommit message (Collapse)AuthorFilesLines
2008-10-13From Florian Lohoff (bug 2959):Stig Bjørlykke2-13/+45
rudp looks up the ciscosm dissector for every single packet. Make this a one time in proto_handoff and use the dissector handle. While at it - decode the checksum when there is one. An indicator is that the header length has space for the checksum. Additionally we have seen "stray bytes" after the checksum we can't explain. So decode them as data when there are some. svn path=/trunk/; revision=26427
2008-09-07Get one more pointer difference.Guy Harris1-2/+2
svn path=/trunk/; revision=26163
2008-09-06To compute the difference between two addresses, cast the pointersGuy Harris1-7/+17
holding those addresses to "void *" and then to "char *" (so we don't get warnings from casting directly to "char *" or errors from subtracting two "void *"s), and subtract them, rather than casting the pointers to an integral type possibly shorter than the pointers (to avoid warnings and to avoid the admittedly-infinitesimal chance that the two pointers don't differ in the bits that fit into the integral type). svn path=/trunk/; revision=26151
2008-09-06Use GINT_TO_POINTER() to cast integral values to gpointer inGuy Harris1-2/+2
g_hash_table_lookup() calls, in the hopes of suppressing warnings on platforms with 32-bit ints and 64-bit pointers. svn path=/trunk/; revision=26149
2008-08-29#include <prefs.h> not requiredBill Meier44-44/+0
svn path=/trunk/; revision=26103
2008-08-26#include <emem.h> not req'dBill Meier4-4/+0
svn path=/trunk/; revision=26095
2008-08-14From Frank Wang:Jaap Keuter1-3/+11
dl-map decoder error when decode HARQ_DLMAP_IE and normal IE. svn path=/trunk/; revision=26020
2008-08-05luis.ontanon@gmail.com => luis@ontanon.orgLuis Ontanon11-11/+11
svn path=/trunk/; revision=25937
2008-08-04Declare next_tvb volatile. This prevents the warning:Martin Mathieson1-1/+1
packet-infiniband.c:806: warning: variable 'next_tvb' might be clobbered by `longjmp' or `vfork' seen with gcc 3.4.6 (building for 32-bits on a pentium 4). svn path=/trunk/; revision=25916
2008-07-31From Stephen Donnelly:Anders Broman1-24/+8
Fences incorrectly set in source/destination columns in IB plugin. svn path=/trunk/; revision=25880
2008-07-30No C++ comments - some compilers don't allow them (at least not by default).Guy Harris1-1/+3
svn path=/trunk/; revision=25878
2008-07-30From Stephen Donnelly:Anders Broman4-427/+5002
Infiniband Dissector Plugin 1.2.0 svn path=/trunk/; revision=25876
2008-07-30From Bruno Verstuyft:Anders Broman5-0/+1217
DOCSIS3.0 support in wireshark (MDD, REG-REQ-MP, REG-RSP-MP) svn path=/trunk/; revision=25875
2008-07-29Fix checkapi target for the pluginsJeff Morriss1-1/+1
svn path=/trunk/; revision=25864
2008-07-29Allow checkapis target to work in out-of-tree builds (s#../../#$(top_srcdir)).Jeff Morriss29-33/+33
Also use $(top_builddir) instead of ../../ in a couple of other spots. svn path=/trunk/; revision=25863
2008-07-24Fix DLMAP UL_interference_and_noise_level_IE decode error (bug 2737).Martin Mathieson1-1/+1
From Frank Wang. svn path=/trunk/; revision=25816
2008-07-24Fix HARQ_ULMAP_IE decoder padding error (bug 2738).Martin Mathieson1-1/+1
From Frank Wang. svn path=/trunk/; revision=25815
2008-07-23This file predominantly uses spaces, so remove tabs that were makingMartin Mathieson1-269/+269
indentation look wrong in my editor. svn path=/trunk/; revision=25805
2008-07-23Fix bug 2663 (DLMAP HAEQ_DLMAP_UE decode error).Martin Mathieson1-13/+15
From Frank Wang. svn path=/trunk/; revision=25801
2008-07-22Add NULL termination element to value_string arraysBill Meier1-2/+3
svn path=/trunk/; revision=25799
2008-07-18Change C++ style comments to C style ...Bill Meier1-14/+14
svn path=/trunk/; revision=25762
2008-07-14Oops... missed one ;Sake Blok1-1/+1
svn path=/trunk/; revision=25740
2008-07-14From Richard Kuemmel (bug 2668):Sake Blok1-12/+19
Removed the line tvb_ensure_bytes_exist(tvb, offset, 44); from again. This is not correct, because the frame might have been captured before the os added the padding bytes. E.g. in Windows the frames are captured on the protocol layer. When another protocol driver sends a frame this frame does not include the padding bytes. Also the dataLength variable in case of bMox==TRUE was not calculated correctly. svn path=/trunk/; revision=25738
2008-07-11Change the stats tree API to use signed chars instead of guint8s for all itsJeff Morriss1-2/+2
strings; this should fix a number of signed/unsigned char warnings. Reindent a bunch, too. svn path=/trunk/; revision=25716
2008-07-11From Frank Wang:Jaap Keuter1-1/+3
The ULMAP decoder can get a wrong bit offset when decoding CQICH_Alloc_IE. The finishing position shoud not pad to byte but pad to the length specified, which can be nibble aligned. svn path=/trunk/; revision=25703
2008-07-08Fix bug 2662 (ULMAP HARQ_ULMAP_IE decode error).Martin Mathieson1-14/+29
From Frank Wang. I'd prefer to delete wrong code, but we'll see if anyone misses it. svn path=/trunk/; revision=25675
2008-07-02Add Makefile.common files for epan/dfilter and epan/ftypes.Guy Harris31-3/+95
Add checkapi rules to Makefile.am files. svn path=/trunk/; revision=25656
2008-07-02Get rid of a misleading comment (it says "no need to modify anythingGuy Harris1-5/+0
under here", right above a comment that tells you what you need to modify under there...). svn path=/trunk/; revision=25655
2008-07-01Put printf into a separate "termoutput" API group. For most files,Guy Harris30-30/+30
check for it - but not for TShark plugins, as they are expected to print to the standard output. svn path=/trunk/; revision=25653
2008-06-26Add support for "API groups" in checkAPIs.pl. Make the "prohibited"Gerald Combs30-30/+30
and "deprecated" groups the default. Add an "abort" group for code that shouldn't exit the program. Update the makefiles to call "checkAPIs.pl -g abort" for dissectors. Remove a dependency on "cat" in checkAPIs.pl. svn path=/trunk/; revision=25614
2008-06-25For for compressed DLMAP decode error.Martin Mathieson1-1/+1
From Frank Wang (bug 2640). svn path=/trunk/; revision=25599
2008-06-23Make sure info column is set correctly when tree == NULL.Martin Mathieson1-87/+79
Fixes but 2561. svn path=/trunk/; revision=25530
2008-06-23Try again to get labels matching function names.Martin Mathieson1-2/+2
svn path=/trunk/; revision=25529
2008-06-23Fix wimax UL-MAP ext IE decode error.Martin Mathieson2-5/+5
From Frank Wang (bug 2548). svn path=/trunk/; revision=25528
2008-06-20Wimax: support TLV type 48 in REG-REQ/REG-RSP.Martin Mathieson3-2/+64
From cfreeer, fixes bug 2571. svn path=/trunk/; revision=25495
2008-06-20Fix wimax encoding err when packing subheader present.Martin Mathieson1-3/+3
From Frank Wang, fixes bug 2570. svn path=/trunk/; revision=25494
2008-06-20Support TLV type 36 in wimax plugin.Martin Mathieson1-0/+13
From cfreeer (fix for bug 2569). svn path=/trunk/; revision=25493
2008-06-19fix BlockError stringsUlf Lamping1-4/+4
svn path=/trunk/; revision=25490
2008-05-27Do plugins Checkapi only if the checkapi target is explicitly invoked.Bill Meier1-1/+1
svn path=/trunk/; revision=25382
2008-05-26Show ops, etc even when no filter set.Martin Mathieson1-13/+7
Also avoid crash I was seeing when changing preferences. svn path=/trunk/; revision=25379
2008-05-23From cfreeer:Jaap Keuter1-1/+1
Wimax vals_tek_encryption_ids does not confirm the latest spec. Zero should be "No TEK encryption" instead of "Reserved". svn path=/trunk/; revision=25367
2008-05-22Move the file utility functions from wiretap to libwsutil so thatJeff Morriss35-257/+257
libwireshark (and the plugins using those functions) do not depend on wiretap on Windows. While doing that, rename the eth_* functions to ws_*. svn path=/trunk/; revision=25354
2008-05-14Initialize aitem.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=25302
2008-05-14fix missing brackets causing uninitialized hidden_itemTomas Kukosa1-2/+3
svn path=/trunk/; revision=25300
2008-05-14From Anders Broman:Tomas Kukosa3-70/+144
Patches for broken build svn path=/trunk/; revision=25298
2008-05-14From cfreeer (bug 2541):Stig Bjørlykke1-0/+2
Add tlv_tree for PKM_FLOW_CONTROL and MAX_SUPPT_SECURITY_ASSNS. svn path=/trunk/; revision=25297
2008-05-14From cfreeer (bug 2540):Stig Bjørlykke1-1/+1
Corrected use of hf_snp_auth_policy_support. svn path=/trunk/; revision=25296
2008-05-14From cfreeer:Jaap Keuter1-7/+7
The offset need to be increased while decoding. svn path=/trunk/; revision=25292
2008-05-13Fix some of the Errors/warnings detected by checkapi.Anders Broman1-1/+1
svn path=/trunk/; revision=25283
2008-05-11g_string_sprintf --> g_string_printf and g_string_sprintfa --> ↵Bill Meier4-13/+13
g_string_append_printf svn path=/trunk/; revision=25276