aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Expand)AuthorFilesLines
2012-12-26And more 64-bit-to-32-bit time issues on 32-bit platforms.Guy Harris1-8/+8
2012-12-26Another ILP32 Y2.038K warning.Guy Harris1-1/+1
2012-12-26Squelch a (Y2.038K) warning.Guy Harris1-1/+1
2012-12-26OK, *this* isn't a possibly-infinite loop.Guy Harris1-3/+3
2012-12-26Widen some loop variables, in the hopes that it'll squelch some loopGuy Harris1-3/+3
2012-12-26Eliminate multiple "const"s.Guy Harris1-1/+1
2012-12-26OK, fine, maybe sometimes it's used; flag it with _U_ while we're at it.Guy Harris1-1/+1
2012-12-26If a parameter might be unused, mark it with _U_; don't stick in a fakeGuy Harris1-1/+1
2012-12-26Fix a bunch of warnings.Guy Harris175-1679/+1539
2012-12-25bssmap_msg_fcn[] is a dense array, not a sparse array, so *every* entryGuy Harris1-6/+7
2012-12-25More checks to make sure pinfo->private_data is not null.Guy Harris1-68/+71
2012-12-25Add some additional sanity checks.Guy Harris2-0/+8
2012-12-25In dissect_bthci_evt_command_complete():Guy Harris1-42/+45
2012-12-25set the dtls record length for reassembly _before_ adding a fragmentMartin Kaiser1-2/+2
2012-12-25If there's no packet data, there's nothing to check to see whether thisGuy Harris1-3/+12
2012-12-25Show the Vines Fragmentation Protocol control flags field as bitflags,Guy Harris1-37/+66
2012-12-23From report of Elavarasan via https://bugs.wireshark.org/bugzilla/show_bug.cg...Alexis La Goutte1-23/+155
2012-12-23From Francesco Fondelli via https://bugs.wireshark.org/bugzilla/show_bug.cgi?...Alexis La Goutte1-7/+68
2012-12-23[Automatic manuf, services and enterprise-numbers update for 2012-12-23]Gerald Combs1-10/+190
2012-12-23In nlsp_dissect_clvs(), count len down at the same time we increment theGuy Harris1-5/+5
2012-12-22revert r46678Martin Kaiser1-2/+1
2012-12-22trivial: clean up epan/strutil.cMartin Kaiser1-767/+772
2012-12-22check the length parameter for tvb_get_unicode_string() andMartin Kaiser1-0/+4
2012-12-22Fox copy-and-paste error.Michael Tüxen1-2/+2
2012-12-22Add support for displaying the Packet Block Flags Word of pcapng.Michael Tüxen3-1/+148
2012-12-22From G.Gerrits:Jaap Keuter1-2/+3
2012-12-21Get rid of unnecessary initialization that causes "discards qualifiers"Guy Harris1-1/+1
2012-12-21Fix GSM 7-bit default alphabet decoding in ANSI IS-637-APascal Quantin1-111/+27
2012-12-21Include packet-gsm_sms.h and remove extern declarationsPascal Quantin1-11/+3
2012-12-21Use TVB_SET_ADDRESS_HF() and COPY_ADDRESS_SHALLOW() instead of tvb_get_ptr()Jeff Morriss1-85/+74
2012-12-21Use TVB_SET_ADDRESS() and COPY_ADDRESS_SHALLOW() instead of tvb_get_ptr()Jeff Morriss1-29/+12
2012-12-21fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8112Martin Kaiser1-1/+2
2012-12-21The KRB_RM_ #defines fit in 32 bits, so just make them unsigned, notGuy Harris1-4/+2
2012-12-21Check whether something's too big before subtracting it from anotherGuy Harris1-5/+5
2012-12-21Squelch a qualifier-discard warning.Guy Harris1-1/+1
2012-12-21Well, at least on my machine, packet-pres.c now compiles cleanly, withGuy Harris1-1/+1
2012-12-21Get rid of unused routines for UDC-type.Guy Harris1-18/+0
2012-12-21Don't assume a pointer fits inside an unsigned long - it doesn't, inGuy Harris1-11/+11
2012-12-21Get rid of duplicate declarations (so that -Wredundant-decls doesn'tGuy Harris1-2/+0
2012-12-21Everything else in the floating-point calculations is single-precision,Guy Harris1-3/+3
2012-12-21Make some loop counters unsigned, so that we handle very large loopGuy Harris1-23/+19
2012-12-21Constify some character pointer variables to avoid warnings aboutGuy Harris3-7/+7
2012-12-21Clean up white space.Guy Harris1-17/+16
2012-12-21Fix some valgrind warnings from the capture attached toEvan Huus1-3/+1
2012-12-20Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8095 :Pascal Quantin1-4/+1
2012-12-20Revert r46595Pascal Quantin2-87/+2
2012-12-20Try to determine wether it is MEAS REP, EXT MEAS REP or ENH MEAS REP.Anders Broman1-2/+9
2012-12-19Only include wmem_core.h in packet_info.h. It's not technically aEvan Huus1-1/+1
2012-12-19See if *this* squelches the MSVC errors.Guy Harris1-3/+4
2012-12-19Implement a basic singly-linked for wmem.Evan Huus7-56/+241