Commit Graph

40175 Commits

Author SHA1 Message Date
Stefan Metzmacher 560f120946 packet-spnego: make use of decrypt_krb5_krb_cfx_dce()
This commit will finally allow the decryption of DCERPC
traffic with AES-keys and header signing.

Change-Id: I3a76541493976c9f4d3d228757e8fe0e08a0f02c
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-on: https://code.wireshark.org/review/35711
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-22 18:22:30 +00:00
Uli Heilmeier b0d959eef8 NVME-TCP: Fix ICReq fields:
Fix handling of ICReq fields as documented at
https://nvmexpress.org/wp-content/uploads/NVMe-over-Fabrics-1.1-2019.10.22-Ratified.pdf
Section 7.4.10.2   Initialize Connection Request PDU (ICReq)

Bug: 16333
Change-Id: I96d9f05dd7c2c7b0c5a2a70df494cf0b163d10d1
Reviewed-on: https://code.wireshark.org/review/35892
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-22 12:26:18 +00:00
Pascal Quantin adeeb7f2da LTE RRC: fix a memory leak in composite TVB handling
Bug: 16341
Change-Id: Ib6c020ea3df8b39a02f742f0684fca7db96f1fc3
Reviewed-on: https://code.wireshark.org/review/35899
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-01-22 11:26:11 +00:00
Pascal Quantin 7bc9cd620b GTP: fix a leak in UAT
Change-Id: Ibe4224cf1ac924be88e2352524dd4618976b683d
Reviewed-on: https://code.wireshark.org/review/35898
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-01-22 10:43:48 +00:00
Stig Bjørlykke 919b4ca1cf someip: Fix guint64 printf formats
Use G_GUINT64_FORMAT and remove the format character when printing
unsigned value. Use G_GINT64_MODIFIER when also giving the format
character ('x').

Change-Id: I7c02ec3ebd058c392f8fb21a0e20e242a06e8888
Reviewed-on: https://code.wireshark.org/review/35896
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-22 08:55:49 +00:00
Anders Broman 9084ca2695 geographical_description: Don't mask Orientation of major axis octet 12
Change-Id: I7034cb6304bc7bab5f344b7438ffee6c5ea8844c
Reviewed-on: https://code.wireshark.org/review/35897
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-22 08:55:15 +00:00
Guy Harris a152e041fa Put various epoch time deltas into wsutil/epochs.h.
There are some deltas between the UN*X epoch and other epochs that are
used in a number of places; put them into a header.

Change-Id: Ia2d9d69b9d91352d730d97d9e4897518635b4861
Reviewed-on: https://code.wireshark.org/review/35895
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2020-01-21 23:37:05 +00:00
Peter Wu d44c5e45cb x509af,ocsp,ber: display serialNumber (INTEGER) as bytes
Certificates used in TLS typically have a serial number larger than 64
bits which do not fit in FT_UINT64 and results in use of the synthetic
ber.64bit_uint_as_bytes field name. To enable use of ocsp.serialNumber
and x509af.serialNumber field names, define these as bytes instead.

Update the BER dissector to allow INTEGER types to use FT_BYTES.

Bug: 16339
Change-Id: Id58075b450d86aff6b616c359900ae83a3ec2f51
Reviewed-on: https://code.wireshark.org/review/35868
Petri-Dish: Peter Wu <peter@lekensteyn.nl>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
2020-01-21 22:10:45 +00:00
Pascal Quantin 75e1b69e88 CoAP: change detection logic for CoAP over TCP or TLS
Do not assume that having a TCP port means that CoAP is running directly
over TCP: this is not the case with MQTT for example (see bug 14591 for
a capture). Instead explicitly check that the parent dissector is TCP or
TLS.

Bug: 15910
Change-Id: Ib4880623b8525fe6be52a685397005eac86da135
Reviewed-on: https://code.wireshark.org/review/35879
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
2020-01-21 22:09:51 +00:00
Guy Harris 3d2ccf4a9e Rename a time variable to reflect its units.
The S/370-and-later TOD clock counts in microseconds, not seconds.

Change-Id: I0b11586df073ed589d69ffc014e6f8661dff3d31
Reviewed-on: https://code.wireshark.org/review/35891
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2020-01-21 20:57:31 +00:00
Guy Harris fc31446277 Add support for "classic Mac OS" timestamps and use them in file-mp4.c.
Those times are in seconds since January 1, 1904, 00:00:00 (proleptic?)
UTC.

MPEG-4 Part 14 (MP4) is based on QuickTime, so it uses classic Mac OS
time stamps, in seconds.

Change-Id: Ibcd7faf1b119d8acbb294c95b66ca0d1fb70cbb3
Reviewed-on: https://code.wireshark.org/review/35886
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2020-01-21 20:54:25 +00:00
Anders Broman b0c5f2230d Diameter: Fix Location estimate.
- The AVP should be an OctetString
 - Orientation of major axis should not be multiplied by 2 according to
   the latest standard.

Change-Id: I68532108cc36f4699c10b35ffdbcfaef0c29d9fe
Reviewed-on: https://code.wireshark.org/review/35890
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-21 14:10:35 +00:00
Stig Bjørlykke 1fccffdaea mp4: Fix uint64 printf format
Use G_GUINT64_FORMAT for uint64.

Change-Id: I2c839f1637d088d905c22e615bdf35fe967827d6
Reviewed-on: https://code.wireshark.org/review/35885
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-01-21 09:43:39 +00:00
Pascal Quantin ddb547b04e ICMP/ICMPv6: fix request/response tracking for checksum 0x0000
Apply the change proposed by Chris Maynard in
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=16334

Bug: 16334
Change-Id: I91d79d992c107ca4ddaa17c25c3629424cc240f6
Reviewed-on: https://code.wireshark.org/review/35878
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-21 04:46:56 +00:00
Jakub Adam b5ef0847dc mp4: dissect Track Header Box (tkhd) flags
Change-Id: Id1f035ccc571fe29effb8344b05f4b2b564374bb
Reviewed-on: https://code.wireshark.org/review/35876
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-21 04:46:24 +00:00
Jakub Adam bd645093e5 mp4: display timestamps in human-readable format
Change-Id: Ic8ef5d835b8263b747c856e7a3c66701547d07e7
Reviewed-on: https://code.wireshark.org/review/35875
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-21 04:46:16 +00:00
Dario Lombardo 084a887a30 Fix compilation with gcc-9.
gcc-9 spotted some NULL pointer usages.

Bug: 16319
Change-Id: I3e4ac57705f1852c43299f5e924fc642a2c56a3a
Reviewed-on: https://code.wireshark.org/review/35733
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Petri-Dish: Peter Wu <peter@lekensteyn.nl>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-21 04:44:31 +00:00
Martin Mathieson 8e7432c36a RPC: trivial prettification.
For PortMap replies, don't include port number twice in root item.
For rpc.xid, add long text description.

Change-Id: If6d809b4869762b5e564fab68495ab14df7622e3
Reviewed-on: https://code.wireshark.org/review/35874
Petri-Dish: Martin Mathieson <martin.r.mathieson@googlemail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com>
2020-01-20 16:12:57 +00:00
Pascal Quantin 30baaab460 NAS-EPS: add an option to dissect user data container as non IP
A preference allows the user to decide whether the user data container
payload should be dissected as IP, non IP or not dissected. For non IP,
another preference allows to specify the name of the sub dissector to be
called.

Bug: 16332
Change-Id: I1bfd24eb734d57bff54d99362a90f563751270c6
Reviewed-on: https://code.wireshark.org/review/35857
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-18 08:13:23 +00:00
Uli Heilmeier eb1e379948 SMB: Fix DialectIndex handling
According to https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-cifs/a4229e1a-8a4e-489a-a2eb-11b7f360e60c
0xFFFF is for server does not support any of the listed dialects.

Bug: 16320
Change-Id: I17184e2a1ee8307936d934323bf8d0c9348eac2a
Reviewed-on: https://code.wireshark.org/review/35841
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-18 08:12:54 +00:00
Petr Stuchlík 380282d9cf MMSE: add a missing "Ok" value for X-Mms-Retrieve-Status field
Change-Id: I42ac4d52d9f4fd72d06c9db20428b4ded422f117
Reviewed-on: https://code.wireshark.org/review/35850
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-18 08:10:02 +00:00
Alexis La Goutte 7403f28f4d amqp: wrong bitmask for amqp.method.arguments.multiple
Bug: 16338
Change-Id: I3bfbfce8ba0a3e04799d6af32d7ec7829fc60f4f
Reviewed-on: https://code.wireshark.org/review/35846
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-17 09:04:17 +00:00
Joakim Karlsson 5ffeabc8ce pfcp: Update to 3GPP TS 29.244 V16.2.0 part3
Change-Id: Id6c50426a586405db9f15bf16bc6b6d503b9848e
Reviewed-on: https://code.wireshark.org/review/35844
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-17 09:04:04 +00:00
Harald Welte 16ebca009a Register Ericsson P-GSL + TFP as GSM LAPD SAPI
The use of LAPD SAPI 10/11/12 for TFP + P-GSL is of course not
any official standard, but it's a decade-old defacto usage of said
SAPIs when using an A-bis Superchannel either over TDM/E1 or over
L2TP/IP.

As there never were any official/specified users of LAPD SAPI 10/11/12,
and it's virtually impossible for anyone add them due to the historic
nature of GSM, I believe it's safe to add them simply as default.

Change-Id: I0622e486013c7287f967e6b3ab09c9f211edbd71
Reviewed-on: https://code.wireshark.org/review/35836
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
2020-01-16 20:10:03 +00:00
Kenneth Soerensen 535f5277f3 ieee802154: Use the dissector internal address format for ACK tracking
This makes the address representation in ieee802154_transaction_t and
ieee802154_packet consistent.

Change-Id: I6ae66b48c3b2afe5843e6a82fe5adf1c6be5a7cd
Reviewed-on: https://code.wireshark.org/review/35780
Reviewed-by: Martin Boye Petersen <martinboyepetersen@gmail.com>
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
2020-01-16 20:08:07 +00:00
Joakim Karlsson 5ead0a36ea pfcp: Update to 3GPP TS 29.244 V16.2.0 part2
Change-Id: I2d226f30b228a4bfaba92819ad03997cebd7f20c
Reviewed-on: https://code.wireshark.org/review/35839
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-16 09:34:47 +00:00
Joakim Karlsson 3250410e1b pfcp: Update to 3GPP TS 29.244 V16.2.0 part1
Change-Id: I6365d3522176bdc61a73934b949cc2bd9a845020
Reviewed-on: https://code.wireshark.org/review/35838
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-16 09:33:38 +00:00
Harald Welte 34a18d9302 packet-gsm_abis_om2000.c: Add string for TRXC Managed Object
This is a managed object that we see e.g. in the OM2000 spoken to
a DUG20 of the RBS6000 series.

Change-Id: I12bb1df1ea4581178f73b7d31de8628711d42ed9
Reviewed-on: https://code.wireshark.org/review/35835
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-16 06:41:13 +00:00
Alexis La Goutte 4ad18674b7 QUIC: Add Loss Bits Transport Parameter
https://igorlord.github.io/draft-ferrieuxhamchaoui-tsvwg-lossbits/draft-ferrieuxhamchaoui-quic-lossbits.html#name-transport-parameter

Change-Id: I05df0e025726a35e3b6eb265b0530ae0022c6764
Reviewed-on: https://code.wireshark.org/review/35820
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-16 06:40:58 +00:00
Jaap Keuter 4ee88f3e34 netlink: use indicated encoding for attributes
In netlink the general format of attributes includes a network byte order
indication flag in the header. When set this has to be passed to the
attribute value dissector function as the byte ordering fo the attribute
value. Otherwise the heuristically determined capture host byte order has
to be passed to the attribute value dissector function.
With the removal of all copies of 'encoding' this can now be achieved
through setting of the encoding in nl_data.

Change-Id: Iec0c1b2c2958734a469ff6f75db4626846cb30c9
Reviewed-on: https://code.wireshark.org/review/35831
Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
Petri-Dish: Jaap Keuter <jaap.keuter@xs4all.nl>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-16 04:37:55 +00:00
Alexis La Goutte 3e072f1bc9 lapdm(.h): fix duplicate include guard (found by lgtm.com)
Change-Id: I3cf4d30f5e91b6182c64b7f016e03d63aa1066d0
Reviewed-on: https://code.wireshark.org/review/35829
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2020-01-15 22:17:18 +00:00
Pascal Quantin 0de33e955a XnAP: another ASN.1 description fix
Change-Id: If2a874192f81308ac3ab27241861fc6ad5230bb2
Reviewed-on: https://code.wireshark.org/review/35830
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-01-15 21:21:46 +00:00
Pascal Quantin 8bc827d561 XnAP: fix ASN.1 description
Change-Id: I02d9dbad886ff07349228ec568ae8b550803c079
Reviewed-on: https://code.wireshark.org/review/35828
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-01-15 21:12:30 +00:00
Pascal Quantin e0ea5cbc02 XnAP: upgrade dissector to v15.6.0
Change-Id: I98c594e0a0b9e9abfda2177b32aa23c9d96cf348
Reviewed-on: https://code.wireshark.org/review/35822
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-01-15 18:46:50 +00:00
Joakim Karlsson 3169344480 NAS-5GS: add support for n1SmMsg from 3GPP 29.502
Change-Id: Ie643abf1bc30d2350952cd9afe0af070f4ff980f
Reviewed-on: https://code.wireshark.org/review/35817
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-01-15 09:48:00 +00:00
Anders Broman d0c9c33f52 IEEE1609.2: Minor updates to the ASN1 specifications.
Change-Id: Ia2a7b4edf2b564e90efaac8a77a6a6c829a6f3fc
Reviewed-on: https://code.wireshark.org/review/35806
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-15 08:39:19 +00:00
Dylan Ulis 6606e95318 CIP Motion: Version 1.5 Updates
1. Service Data Block: Decode the following services:
  Set Cyclic Write List
  Set Cyclic Read List
  Set Attribute List
2. Axis Status 2 - Add more bit definitions
3. Add a preference to display raw attribute bytes. This is useful
  because not all attributes have parsing, and this allows automated
  tools to consistent pull a common format for all attributes.

Change-Id: Ic7a29f3adddcced8cba958e545436b89c0f7ef6d
Reviewed-on: https://code.wireshark.org/review/35799
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-15 04:52:41 +00:00
Tomasz Moń 4ee1110fa5 Fix UAT PKCS #11 Library handle leak
CID: 1457255
Change-Id: Iaa6d48be0654d919012def9706e7c4ac562251b0
Reviewed-on: https://code.wireshark.org/review/35642
Petri-Dish: Tomasz Moń <desowin@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-15 04:52:04 +00:00
Uli Heilmeier b8101a691c ISAKMP: Dissect ID data types also for GDOI SA TEK
Dissect all kinds of ID types also for GDOI SA TEK payload.

Bug: 16233
Change-Id: I4583fed5d9b01ec13f971fbbf79b3053d3355951
Reviewed-on: https://code.wireshark.org/review/35811
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-15 04:51:31 +00:00
Orgad Shaneh 62276f79a2 TPNCP: Avoid multiple registration of preferences
dissector_add_uint_with_preference should not be called more than once for
the same dissector and same name.

Change-Id: I82331ec61c36690d28f541dedc974cd6e7c465e7
Reviewed-on: https://code.wireshark.org/review/35810
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-01-14 22:03:55 +00:00
Jakub Adam ce8e6e1c95 wiretap: Add MP4 reader
Allows opening MP4 (ISO/IEC 14496-12) media files in Wireshark and
viewing their structure.

Change-Id: Ie20b8b89dc69bb52d6faa890e547d90317adecf6
Reviewed-on: https://code.wireshark.org/review/35804
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2020-01-14 20:04:01 +00:00
Pascal Quantin 5b861d84f8 X2AP: upgrade dissector to v15.8.0
Change-Id: I9fe9b4ce1f993857b290a8679761647052fb6bcd
Reviewed-on: https://code.wireshark.org/review/35807
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-01-14 15:47:50 +00:00
Orgad Shaneh b6ce60afbb Prefs: Fix name of deprecated TPNCP port preference
Change-Id: I6a5d2ca72b59ee1a77ad37b6fe6b87c6ba9d9bef
Reviewed-on: https://code.wireshark.org/review/35805
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-01-14 13:52:03 +00:00
Anders Broman e45ee832a6 LPPa: Make it possible to dissect private IEs
Change-Id: I86db83da63bdf6e0778d992636c9ab9e2832eb70
Reviewed-on: https://code.wireshark.org/review/35801
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-14 08:54:29 +00:00
Joakim Karlsson 0ab71cc1ec json: append in Protocol column when call by another dissector
ex HTTP2/JSON

Change-Id: I1947a0d4739e41e03096a5b032656ebe858d2768
Reviewed-on: https://code.wireshark.org/review/35749
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-14 07:52:52 +00:00
Tomasz Moń 098077b685 FTDI FT: Dissect SetBitMode command
Dissect SetBitMode based on the libftdi implementation.
Pass MPSSE data to FTDI MPSSE dissector stub. The FTDI MPSSE stub
currently only marks the data as undecoded.

Add Olimex ARM USB JTAG adapters VID/PID information to FTDI FT.

Ping-Bug: 11743
Change-Id: I1cfc6371a0b1c8f8aae81bf024056fb99ffd443c
Reviewed-on: https://code.wireshark.org/review/35734
Petri-Dish: Tomasz Moń <desowin@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-14 07:49:56 +00:00
Jaap Keuter bc89c4d774 netlink: add and improve code comments
Change-Id: Iafdfdea407112c9e1aa6be61f3624aa7f028f77b
Reviewed-on: https://code.wireshark.org/review/35790
Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
Petri-Dish: Jaap Keuter <jaap.keuter@xs4all.nl>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-14 07:40:20 +00:00
Kenneth Soerensen 9e135f8748 ieee802154: Use ACK tracking to add generated addresses to ACKs
Change-Id: I86a0aae9409ab5f81a70560997c637f8f16718fa
Reviewed-on: https://code.wireshark.org/review/35754
Petri-Dish: Jim Young <jim.young.ws@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-01-13 07:44:06 +00:00
Guy Harris 8c2328f121 Point to a page that might be less likely to move.
Change-Id: I047341817fa026da520c514175794b4737615a08
Reviewed-on: https://code.wireshark.org/review/35772
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2020-01-13 03:14:47 +00:00
Guy Harris 8fc67d48af Update URL.
Change-Id: Ibfc87c783c9786f977ca43674ad581539a91924a
Reviewed-on: https://code.wireshark.org/review/35768
Reviewed-by: Guy Harris <guy@alum.mit.edu>
2020-01-13 03:09:03 +00:00