Commit Graph

68141 Commits

Author SHA1 Message Date
Michael Mann 1d457701c5 rsa.c: strerror -> g_strerror
Pacify checkAPIs.pl

Change-Id: I637a6cd678b99d05cd1b26fd3cba6ad4dd19e8d2
Reviewed-on: https://code.wireshark.org/review/22957
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
2017-08-05 18:32:35 +00:00
Uli Heilmeier 92adb99d00 QT: Add shortcuts for "Follow XXX Stream"
Add shortcut Ctrl+Alt+Shift+
T for "Follow TCP Stream"
U for "Follow UDP Stream"
H for "Follow HTTP Stream"
S for "Follow SSL Stream"

Bug: 13047
Change-Id: I0fdd5b4d20b976b56694821a9c11424eab40b2b3
Reviewed-on: https://code.wireshark.org/review/22930
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
2017-08-05 18:31:46 +00:00
John Keeping c57da453ba ZigBee: fix OTA File Version bitfield
Commit ffea2f8a24 ("ZigBee: fix endian for File Version field in OTA")
fixed the endianness of the file version field but did not update the
masks for the sub-elements of this field now that they are compared
against the value decoded as little-endian.

Change-Id: Icdb9d56cc29da19b9fc26da84979f15936c930d4
Reviewed-on: https://code.wireshark.org/review/22955
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Reviewed-by: Michael Mann <mmann78@netscape.net>
2017-08-05 16:54:08 +00:00
Stig Bjørlykke 15c0c8db5e Lua: Check for PseudoHeader.none
Don't dereference pointer when using PseudoHeader.none.

Bug: 13944
Change-Id: I4e509269ac4983531912f3f9b2cc6b7cf00fbeae
Reviewed-on: https://code.wireshark.org/review/22945
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2017-08-05 10:39:37 +00:00
Stig Bjørlykke 4b4ce9fb35 Lua: Fix error message in Dumper:dump()
Change-Id: I9cdf8ecaf5129a30091b9b4d109f70cfdd7fca1b
Reviewed-on: https://code.wireshark.org/review/22946
Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2017-08-05 10:34:32 +00:00
Robert Grange 7dbc022b37 packet-mq: Improve ECapFlag display + CapFlag3 Add new Flag
Improve dispaly of Error Cap Flags
Add new Flag for Cap Flag
Misc coding aligmement

Change-Id: I9ad593dbe8bcc116057af9a6324f25451bac2a88
Reviewed-on: https://code.wireshark.org/review/22938
Reviewed-by: Michael Mann <mmann78@netscape.net>
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2017-08-05 09:31:00 +00:00
Guy Harris b9b7389e21 Lines being processed are not null terminated, they're counted.
Pass the remaining line length to process_pwd_success(), and don't treat
the string passed to it as a null-terminated string, check the length
value.

Also, make sure the line is long enough before even calling
process_pwd_success().

Bug: 13946
Change-Id: I67d015854046bbaaa6f55d4221f314e1446e7398
Reviewed-on: https://code.wireshark.org/review/22943
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-08-05 01:18:37 +00:00
Gerald Combs cdeb6f122a WSDG: Update the Windows docs and add a CMake section.
Update the Windows section for Visual Studio 2015. Copy the content from
README.cmake to its own WSDG section and remove README.cmake.

Remove the PowerShell sections. Our required version (2.0) ships with
every supported version of Windows. Remove the sed section.

Change-Id: Id37c6e71bacc247a3ed1992adb1408ec13f6a187
Reviewed-on: https://code.wireshark.org/review/22940
Reviewed-by: Gerald Combs <gerald@wireshark.org>
2017-08-04 23:01:59 +00:00
Guy Harris 1cabeea9b8 Fix up indentation.
Change-Id: I99445d9934dbb4c97c4c41192c8fe908441f2843
Reviewed-on: https://code.wireshark.org/review/22942
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-08-04 22:27:12 +00:00
Guy Harris a25d477fa7 Clean up private key file error reporting.
Ensure that rsa_load_pem_key() and rsa_load_pkcs12() always return an
error message string if they fail, so that

	1) they don't return NULL without supplying an error string;

	2) they don't supply an error string if they succeed.

If either of them fails, report the error; if there's no error string,
report an unknown error (that shouldn't happen, but the wsutil/rsa.c
code needs more cleanup before I'll believe it can't happen).

While we're at it, clean up some of those error strings, return NULL
rather than 0 as the failure case from rsa_load_pkcs12() as we do in
rsa_load_pem_key() (they mean the same thing, but NULL makes it a bit
clearer), and de-initialize the private key structure in
rsa_load_pem_key() if we fail (so that we don't leak memory).

Change-Id: Id9dd331800d87b017a500a6f579df446057f555b
Reviewed-on: https://code.wireshark.org/review/22941
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-08-04 22:25:53 +00:00
Guy Harris 8d09f2a3ad Don't assume that we have a last_command value in an FTP conversation.
Nothing ensures that will be the case, and if we assume it is the case,
we can crash.

Bug: 13945
Change-Id: I7f6cb47da81efe219e87b06f8def65a332273480
Reviewed-on: https://code.wireshark.org/review/22939
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-08-04 20:12:44 +00:00
Olivier Verriest 97dcf87a86 SNMP: add support for USM SHA-2 algorithms (RFC 7860)
Generlize the USM handling and add support for HMAC-SHA-2 authentication
protocols.

Change-Id: I7cca2f24db61620423fded078c680322aff86400
Reviewed-on: https://code.wireshark.org/review/22846
Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
Petri-Dish: Jaap Keuter <jaap.keuter@xs4all.nl>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2017-08-04 05:57:20 +00:00
Gerald Combs dc69a8446e CMake: Don't look in WOW6432Node.
CMake should check both the 32-bit and 64-bit views automatically.

Change-Id: I856814efcd660260c734c7956ad00ee43a8f666f
Reviewed-on: https://code.wireshark.org/review/22936
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2017-08-04 05:56:46 +00:00
Gerald Combs f155beb094 Qt: Fixup the welcome screen stylesheet.
Pass in a QString argument only when we have a placeholder. Fixes a

    QString::arg: Argument missing: MainWelcome { ...

warning on Windows.

Change-Id: I42dd155252bd9fd4f21f0112b62044c7397c9810
Reviewed-on: https://code.wireshark.org/review/22934
Reviewed-by: Gerald Combs <gerald@wireshark.org>
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2017-08-04 05:56:18 +00:00
Pascal Quantin ce7b994383 proto.c: fix use of proto_tree_add_text(_valist)_internal() with length = -1
When using a length of -1, use the tvb remaining length instead of 0.

Change-Id: I569e9c9f57531914a3b613c3a6a9bff076fba362
Reviewed-on: https://code.wireshark.org/review/22931
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2017-08-04 05:55:34 +00:00
João Valverde 733c19a072 Optimize the "services" dictionary
Remove assignee and other miscellaneous information that changes more
frequently than service name and can be consulted directly in the IANA
registry.

Allow merging identical transports into a single line for convenience
and size/speed optimization (a backward-compatible change).

Remove obsolete make-services.pl.

Change-Id: I3ecbd1a6a68d87c084d77498a0eeb44b7afdab67
Reviewed-on: https://code.wireshark.org/review/22872
Petri-Dish: João Valverde <j@v6e.pt>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2017-08-04 05:55:08 +00:00
Martin Mathieson 936a8f1cf8 FTP: track current working directory and show as generated field
Change-Id: Ib43f0a7c96f4a2dfd931224b536a8ff5d17b0a36
Reviewed-on: https://code.wireshark.org/review/22651
Petri-Dish: Martin Mathieson <martin.r.mathieson@googlemail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2017-08-04 05:54:48 +00:00
Dario Lombardo e3d0bf0bb2 extcap: skip custom log if filename is space.
Change-Id: I98b890316af05d9c5359dc38a30d07ac55f262fe
Reviewed-on: https://code.wireshark.org/review/22932
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Dario Lombardo <lomato@gmail.com>
2017-08-03 13:04:33 +00:00
Dario Lombardo f978465fb3 extcap: add debug log file feature to extcap-base.
Change-Id: I3bfc9b2fd7b73dcfef52c5101360384d205c0d12
Reviewed-on: https://code.wireshark.org/review/22835
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Roland Knall <rknall@gmail.com>
2017-08-02 17:41:24 +00:00
Pascal Quantin 03f9bd4091 MAC LTE: upgrade dissector to v14.3.0
Change-Id: Icd3b12b7d89df2050b9365b9b173949a7cdc455a
Reviewed-on: https://code.wireshark.org/review/22928
Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2017-08-02 17:34:19 +00:00
Pascal Quantin e4a8c71da8 RLC LTE: update header to reflect the correct version
Change-Id: Ic9146d4679fc4af0800bbc1bdf40ec54d1809f1a
Reviewed-on: https://code.wireshark.org/review/22927
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2017-08-02 17:34:12 +00:00
Pascal Quantin f524eb4dc1 PDCP LTE: upgrade dissector to v14.3.0
Change-Id: I96d2a9e703f1c9403f09d77e6b8ee06658b9c40f
Reviewed-on: https://code.wireshark.org/review/22926
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2017-08-02 17:34:05 +00:00
Marius Paliga ddb373ecb0 mpeg descriptor: dissect ac3 system a: Respect descriptor length
Bug: 13939
Change-Id: I3fbbbb4e806e0732c2d11a7fd5048528c5f6f328
Reviewed-on: https://code.wireshark.org/review/22923
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
2017-08-02 17:24:39 +00:00
Mike Lugo 31dc0310e2 Added AVP definitions for the following AVPs:
132017 - Override-Control
132019 - Override-Charging-Action-Parameters
132021 - Override-Charging-Action-Exclude-Rule
132022 - Override-Charging-Parameters
132024 - Override-Rating-Group
132026 - Override-Online
132027 - Override-Offline

For reference, page 51: http://www.cisco.com/c/en/us/td/docs/wireless/quantum-policy-suite/R13-0-0/CPS13-0-0MobileConfigurationGuide/bk_Mobile_Config_Guide_chapter_01000.pdf

Change-Id: I397dfad5ea0bd7d06d8b06034c44cc676c293416
Reviewed-on: https://code.wireshark.org/review/22925
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
2017-08-02 17:22:35 +00:00
Guy Harris 1da9d28edc Distribute macos-setup-brew.sh in the source tarball.
Change-Id: I9521810d7e9d8b3b13f7949256fa409eafd1cc2c
Reviewed-on: https://code.wireshark.org/review/22920
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-08-02 07:44:39 +00:00
Guy Harris 0147a74bec Remove trailing white space.
Change-Id: I6b650521e86a64526db75f38bfb93ea1b890f6a1
Reviewed-on: https://code.wireshark.org/review/22919
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-08-02 07:42:38 +00:00
Guy Harris 2a17c33928 Move macosx-setup.sh to tools and remove the "x".
The OS is now called just macOS, and the rest of the setup scripts are
in tools, so move this one there as well.

Update the documentation to reflect the change.

Change-Id: I4d9ebf0797ffe8862e82c4bcfdeec1d2eabae6ae
Reviewed-on: https://code.wireshark.org/review/22918
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-08-02 07:40:34 +00:00
Guy Harris c5569cfa0b Note that newer versions of various distributions won't have these problems.
Change-Id: Ib5f0d9ffe4a2a574c5cc2299271d3c5f9828dede
Reviewed-on: https://code.wireshark.org/review/22914
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-08-02 07:31:18 +00:00
Guy Harris 778117c502 macosx-setup.sh doesn't build Qt, it just installs a binary.
Say it builds "as needed".

Change-Id: I85ce2062da7f168785d0d22160b8f19b85d554e3
Reviewed-on: https://code.wireshark.org/review/22909
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-08-02 00:44:26 +00:00
Guy Harris e23e28da22 Add bcg729.
Change-Id: I5ee7a2a9027f67e003744f3e076429ef2eda0a4b
Reviewed-on: https://code.wireshark.org/review/22908
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-08-02 00:04:46 +00:00
Guy Harris 25b9d31526 Add SpanDSP to the set of libraries to download and install.
Change-Id: I23c22aff1f4fadeaac120e01e5b222d2da5cb1f2
Reviewed-on: https://code.wireshark.org/review/22906
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-08-01 23:36:43 +00:00
Gerald Combs 7c5ff646dc Look for Cygwin in one more place.
Add "HKLM\SOFTWARE\WOW6432Node\Cygwin\setup" to the Cygwin search paths.

Change-Id: I302ecea67dd580449b450136c027ac37adf586d3
Reviewed-on: https://code.wireshark.org/review/22893
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Gerald Combs <gerald@wireshark.org>
2017-08-01 22:28:29 +00:00
Pascal Quantin f24c1564bd Update USBPcap to 1.2.0.2
Change-Id: I0f318cdd3644ef4eb2195bed3d0bd561dde7f6dc
Reviewed-on: https://code.wireshark.org/review/22903
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
2017-08-01 21:36:17 +00:00
João Valverde fb052a637f Use g_build_filename() instead, fix indentation
Change-Id: I459208eed4a76b104bc28aa44ab05374e57043de
Reviewed-on: https://code.wireshark.org/review/22873
Petri-Dish: João Valverde <j@v6e.pt>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
2017-08-01 21:20:37 +00:00
Hassan Sultan eeab5f48fe SMB2: Move the blob offset & length fields
from under the security blob since they're physically placed before the blob.
Also renamed them to clarify their link to the blob

Change-Id: I896ce8eea3f5f41c1887a685247e7fa168cc9061
Reviewed-on: https://code.wireshark.org/review/22823
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Reviewed-by: Richard Sharpe <realrichardsharpe@gmail.com>
2017-08-01 18:04:05 +00:00
Pascal Quantin 81b8d01456 CMS, ESS: regenerate ASN.1 dissectors after g49e920bc21
Change-Id: I518e94cba90a4d2ad9f5f3e787279de358adabc5
Reviewed-on: https://code.wireshark.org/review/22901
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2017-08-01 18:02:36 +00:00
Pascal Quantin c79382e69b SNMP: regenerate ASN.1 dissector after g7466880e8a
Change-Id: Ie6f93ed3c5c98d7a5df8d6fdc678551d53feee71
Reviewed-on: https://code.wireshark.org/review/22900
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2017-08-01 18:02:21 +00:00
Marius Paliga 6893f7a5c7 E212: Check MNC length before trying 3-digits length
Bug: 13935
Change-Id: Ib3f86c7a70d065cf7d5659a2fbc9c34047efcb56
Reviewed-on: https://code.wireshark.org/review/22894
Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2017-08-01 11:55:17 +00:00
Pascal Quantin 4e9085696b CMake: do not check stack size when compiling with ASan or UBSan
Instrumentation code increases the stack usage. Let's deactivate the
check when compiling with ASan or UBSan as the objective here is not
to check the stack consumption and its usage is out of our control.

Change-Id: I9d6e269a0d404dc1833183a070fdbbb7fb0446e0
Reviewed-on: https://code.wireshark.org/review/22888
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
2017-07-31 11:21:20 +00:00
Uli Heilmeier 6cff9c8da6 Netflow: Reassemble flows spanning multiple PDUs
Flows records can span multiple PDUs (e.g when using TCP).

This commit adds the preference to reassemble flows.

Bug: 13915
Change-Id: I10eb0d9ee5ff5cc06ff52d0d0c8c468140e0273b
Reviewed-on: https://code.wireshark.org/review/22792
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
2017-07-31 11:19:41 +00:00
Harald Welte 38b7660eed gprs-llc: Don't attempt to decode Dummy UI Command
As explained by 3GPP TS 44.064 Section 6.4.2.2 there are Dummy UI
Commands which are never generated by a LLC entity, but nevertheless
received by a LLC entity.  They are generated by the underlying
network-side RLC/MAC entity a as a means to artificially delay the
release of a downlink TBF.

We introduce a new "llcgprs.dummy_ui" boolean field on which the user
can match to filter our such messages, if needed.

Change-Id: Ie8fcb42cbd66a7e5b77849f0bc5a3630d0d54a9c
Reviewed-on: https://code.wireshark.org/review/22862
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
2017-07-31 11:19:26 +00:00
Pascal Quantin c9cb01adbb IrCOMM: check string length before appending it to item
Bug: 13929
Change-Id: I33f3fec77014949fcc15df72c42ffcb25158562f
Reviewed-on: https://code.wireshark.org/review/22887
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
2017-07-31 11:16:58 +00:00
Guy Harris 4af5e1a5c3 Don't force people to do a Web search to find the header layout.
Change-Id: Ie71db56327e1cb17b46da0d0675e3485bebd2439
Reviewed-on: https://code.wireshark.org/review/22885
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-07-31 01:28:12 +00:00
Guy Harris 4ad98cc3f5 Use proto_tree_add_item_ret_uint().
Change-Id: I006bb0f2cf7e215d24c5eaa6f208cdd6d563d36a
Reviewed-on: https://code.wireshark.org/review/22883
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-07-31 01:06:44 +00:00
Guy Harris fe29cb3bb0 Add expert infos for too-long or too-short TLVs.
Also, process the packet to the end, even if there are fewer than 3
bytes left; we'll throw an exception if we can't fetch the type and
length, which will report the packet as malformed (which it is).

Change-Id: Iddd5be4be635553ac77bdb7fe232c2edb0e4404c
Reviewed-on: https://code.wireshark.org/review/22882
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-07-31 00:57:54 +00:00
Harald Welte c254f3a13b GSMTAP: Treat PDTCH identical to PACCH (hand into packet-gsm-rlcmac.c)
The RLC/MAC dissector decodes both signalling (PACCH) and data (PDTCH)
RLC/MAC blocks, so let's make sure we dispatch both logical channels
into that dissector.

Change-Id: Ia26a1ba74468a49da071185cc5ee876ade907207
Reviewed-on: https://code.wireshark.org/review/22861
Reviewed-by: Michael Mann <mmann78@netscape.net>
2017-07-30 23:55:18 +00:00
Harald Welte 990192872d GSMTAP: Proper name for PDTCH (not PDCH)
PDCH is the physical channel name, while PDTCH is one of the logical
channels (goether with PTCCH and PACCH) on the PDTCH.  Let's call it
by its proper name, rather than keeping the misnomer.

Change-Id: I724fcfba595c9c861b64a30d5510468ec007424c
Reviewed-on: https://code.wireshark.org/review/22860
Reviewed-by: Michael Mann <mmann78@netscape.net>
2017-07-30 23:54:57 +00:00
Martin Mathieson 64b5a38bd9 dns: add missing break
Change-Id: Iec47e262beb9600fc6596242c4ce0d56162be74f
Reviewed-on: https://code.wireshark.org/review/22881
Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com>
2017-07-30 22:52:06 +00:00
Guy Harris 74210f07fd Make the protocol column read-only, too.
The original code made all columns read-only; making only the info
column read-only makes the packet summary look weird, with the contained
protocol shown but the info from MSDP shown.

Change-Id: Iaa8afcb98a26a94230d5f344261f202ea658d077
Reviewed-on: https://code.wireshark.org/review/22878
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-07-30 21:51:00 +00:00
Guy Harris 7e03e6b4ea Do more checks for extra data at the end of a TLV.
Change-Id: I013b21184f8e539d194b6d7ad880e50674958f32
Reviewed-on: https://code.wireshark.org/review/22874
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2017-07-30 21:32:38 +00:00