Commit Graph

78002 Commits

Author SHA1 Message Date
John Thacker 18ffd52e8e RTP: Make Decode As handling consistent across subdissectors
RTP has two dissector tables, one directly associated with payload types, and
one which is associated with strings that appear in SDP commands. This makes
all dissectors that are registered as a dynamic payload type that can be
configured by SDP appear as a Decode As option for the RTP PT table.

Some protocols were registered in the table for configuration by SDP but
had no way to register with the rtp.pt table. These include EVRC, H.223,
and v150fw.

Other protocols had a long standing preference to set a dynamic payload type,
but they still did not appear in the Decode As menu unless that preference
was changed from the default, largely because of the way that the preference
was not actually registered with the rtp.pt table unless it had a value in
the dynamic payload type range. These include EVS, H.263P, H.264, H.265,
ISMACryp, IuUP, LAPD, MP4V-ES, RTP-MIDI, and VP8.

RFC 3551 says that not just the dynamic payload types, but also the unassigned
and even the statically assigned payload types MAY be dynamically reassigned as
necessary, so this patch also allows these preferences to be set for payload
types less than 96. The only payload type not allowed is 0 (which RFCs 3551 and
7007 say must be μ-law PCM), which is handy anyone for backwards compatibility
with preferences that used to be uints (where 0 meant disabled.)

All protcols which formerly used a uint preference are all converted to a
range preference, and the text is changed to be similar for each. This works
in a backwards compatible fashion, and any defaults are maintained.

The patch also adds some of the dissector variants as PINOs so that they will
show up with distinct names in the Decode As menus, and changes some of the
protocol short names so that the entry in Decode As is clearer and matches
what is used for other similar protocols.

Change-Id: I68627b5c3e495d9fc813d88208f3b62e47e0c4de
Reviewed-on: https://code.wireshark.org/review/37396
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-12 06:06:21 +00:00
Alexander Dahl eddfa0f146 dissectors: hartip: Fix command 77 decoding
Two things were broken with command 77 decoding:

1. There's an additional byte in the request, which is not present in
   the response, so the offsets where misplaced for all requests by one.

2. The embedded command (like all the other HART pass-through commands)
   distinguishes between long and short addresses, depending on the
   delimiter byte in front. When using that long address (which is the
   usual thing for all embedded commands except command 0) the remaining
   fields where also displaced.

Both points lead to obviously broken decoding due to misplaced offsets.

Fixes: 0ee1445ada ("Improve HART dissector")
Signed-off-by: Alexander Dahl <ada@thorsis.com>
Change-Id: I4355fe73b5164a4f03e522127ed487749279da65
Reviewed-on: https://code.wireshark.org/review/37411
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-12 06:03:29 +00:00
Piotr Smolinski 24712ec073 Kafka: fix the FETCH response alignment issue
There was a problem in FETCH response parsing when the server had more data than the requested
maximal return size. In such case the server checks if the first chunk of data fits into buffer. If it does not,
the first chunk is returned as a whole to the requestor. Otherwise it is assumed that the client is capable
of discarding invalid content and the server pushes maximum available block. It makes sense, because
the default block is 10MB and pushing it opaque leverages zero-copy IO from the file system to the network.

In the existing implementation it was assumed that the last batch is aligned with the end of the buffer.
Actually, if there is some data more, the last part is delivered truncated.

This patch:
* fixes the last part alignment handling
* adds opaque field for truncated content
* moves preferred replica field to the proper context

Bug: 16623
Change-Id: Iee6d513ce6711091e5561646a3fd563501eabdda
Reviewed-on: https://code.wireshark.org/review/37446
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-12 06:01:33 +00:00
Pascal Quantin c97076b7d7 MAC LTE: add support for extended LCID
This feature introduced in V15.5.0 allows to have up to 15 DRBs by
adding LCID 32 to 38

Change-Id: I4442e26d115efe484eda4f2d8921483cf4278b99
Reviewed-on: https://code.wireshark.org/review/37462
Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com>
Petri-Dish: Martin Mathieson <martin.r.mathieson@googlemail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-06-12 04:13:25 +00:00
Moshe Kaplan 4d50fddfed cppcheck.sh: Add support for xml output with '-x'
Add an option of '-x' to tools/cppcheck.sh to support XML output.

Change-Id: I2921d7cd57ee9c925419247a0238b572f637c854
Reviewed-on: https://code.wireshark.org/review/37424
Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
Reviewed-by: Gerald Combs <gerald@wireshark.org>
2020-06-11 16:55:03 +00:00
Pascal Quantin 07ca55323f NGAP: fix dissection of NASC field
Change-Id: Ia92b5b16d735062afdaeba4560539fa24e2feb1c
Reviewed-on: https://code.wireshark.org/review/37458
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-06-11 15:18:49 +00:00
Pascal Quantin 3d9b2807aa LTE RRC: dissect nas-SecurityParamFromEUTRA for the 5GS to EPS handover case
Change-Id: I3bc14209ad1be8d4f8bdac710baf04a29b521c93
Reviewed-on: https://code.wireshark.org/review/37457
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-06-11 15:18:29 +00:00
Alexis La Goutte 9d240722f1 QUIC: Update salt and rename SERVER_BUSY error code (draft-29)
* Update Initial Salt to fix decryption.
* Rename SERVER_BUSY (0x2) -> CONNECTION_REFUSED.
* Drop draft-21 and draft-22 support.

Bug: 13881
Change-Id: I68f5d52b2cb80b9d2e2cb315b03b3af1a7354bbf
Reviewed-on: https://code.wireshark.org/review/37432
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Petri-Dish: Peter Wu <peter@lekensteyn.nl>
Tested-by: Petri Dish Buildbot
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
2020-06-11 12:27:02 +00:00
Pascal Quantin 761985036d NSIS: remove translations sub folder before styles parent folder
Bug: 16601
Change-Id: I8abe331109fdf4287a6ee5a6d054e85aa710e559
Reviewed-on: https://code.wireshark.org/review/37447
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-06-11 07:28:50 +00:00
Stig Bjørlykke d3845de256 coap: Add block reassembly
Reassemble blocks before passing to payload dissector.

Change-Id: I09d81abe016989c8d705355a117cf12e40f07e59
Reviewed-on: https://code.wireshark.org/review/37440
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2020-06-11 06:37:41 +00:00
Stig Bjørlykke 86c6befcab coap: Fix "More Flag" value
Use the raw value for the block "More Flag", not the already adjusted one.

Change-Id: I13ddd24c4f9b9201798d18abe008945879f03774
Reviewed-on: https://code.wireshark.org/review/37442
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
2020-06-11 06:36:55 +00:00
Pascal Quantin be1ac1333d GTPv2: fix dissection of gtpv2.mon_event_ext_inf.lrtp
Bug: 16602
Change-Id: I42e66b84e9f1779b0f1a0c9226c2c444dcf26aa8
Reviewed-on: https://code.wireshark.org/review/37444
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-06-10 21:25:45 +00:00
Gerald Combs f8d464f435 checklicenses: Add a --list-allowed option.
Add an option to list our allowed licenses.

Remove a couple of GTK+ entries while we're here.

Change-Id: I1c8cf3314cff369766f1ba25438f16c69f42a1ba
Reviewed-on: https://code.wireshark.org/review/37409
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Reviewed-by: Gerald Combs <gerald@wireshark.org>
2020-06-10 18:12:50 +00:00
Roland Knall 5a7b949398 CMake: Remove unnecessary defines
Remove #defines not needed in any part of the sourcecode

Change-Id: I042ed4ae5750c07e3316b9a18516359213cf7998
Reviewed-on: https://code.wireshark.org/review/37438
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Roland Knall <rknall@gmail.com>
2020-06-10 15:38:13 +00:00
Stig Bjørlykke b77a435aee epan: Reassembled in link is generated
Mark the "Reassembled in" link item as generated.

Change-Id: Id8f7b26cf77aa5bc82de07799bb1468c8b8a4209
Reviewed-on: https://code.wireshark.org/review/37441
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-10 14:38:35 +00:00
Alexis La Goutte ec0403acb4 ieee80211: Add RSN eXtension (Tag 244)
Change-Id: I6b10f6ece7e6a50f3538ea97ac75a0ec654e434e
Reviewed-on: https://code.wireshark.org/review/37407
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-10 13:21:53 +00:00
Roland Knall 6f700a9da6 Qt: Fix zip import/export on Windows
On Windows, cleaning up the filename inside the zip
failed due to the backslash not properly being recognized.
This lead to profiles, which could not be imported on another
machine, if the filename contained a path not existing there.

Bug: 16608
Change-Id: Ib30b2370e30c30ac60f283edf6376c07258c25b6
Reviewed-on: https://code.wireshark.org/review/37437
Petri-Dish: Roland Knall <rknall@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Roland Knall <rknall@gmail.com>
2020-06-10 12:49:18 +00:00
Alexis La Goutte 0d10d8e6e8 nan(wifi): fix display filter typo
Found by Rajan Vijayaraghavan

Bug: 16610
Change-Id: Iac4888d53fa282e7e73fb75b0d58a3a568e094b9
Reviewed-on: https://code.wireshark.org/review/37384
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-10 10:17:17 +00:00
Pavel Strnad 43c16b14fb NAS-5GS: fix decoding of 5GSM cause
5GSM cause (9.11.4.2) is using TV format
    in PDU session modification request messgae
    based on 24.501/chapter 8.3.7.1

Change-Id: I7e072e2b4c3422ec75e8bcebebb534905028eb2a
Reviewed-on: https://code.wireshark.org/review/37433
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-10 09:06:28 +00:00
Guy Harris 6ba8bc9233 vpp: get rid of unnecessary header.
No Internet-style checksumming is done here, so we don't need
epan/in_cksum.h.

Change-Id: Ib125d155f46a4b6168fb910fd7265f0878bda3e0
Reviewed-on: https://code.wireshark.org/review/37431
Petri-Dish: Guy Harris <gharris@sonic.net>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <gharris@sonic.net>
2020-06-10 06:19:26 +00:00
Guy Harris 7f4ebb6e67 shim6: indicate the RFC for the protocol.
Change-Id: Id2f4f64e20f2abcf8bf1cc45c09631050eebf50b
Reviewed-on: https://code.wireshark.org/review/37430
Reviewed-by: Guy Harris <gharris@sonic.net>
2020-06-10 05:53:29 +00:00
Guy Harris 89755cc897 shim6: use ip_checksum_tvb().
ip_checksum_tvb() does the exact same thing shim6_checksum() does;
there's no need for the shim6 dissector to have its own version.
(Perhaps ip_checksum_tvb() didn't exist at the time shim6_checksum() was
written.)

Change-Id: I015f5f0a6e45d6ac125250bf7071a6aa7caeef7b
Reviewed-on: https://code.wireshark.org/review/37429
Petri-Dish: Guy Harris <gharris@sonic.net>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <gharris@sonic.net>
2020-06-10 05:46:44 +00:00
Guy Harris 2e8a804461 rsvp: explain why we don't worry about in_cksum() returning 0xFFFF.
Change-Id: I31ed0382b138042a7dcb4be2d4695b9a320c3efe
Reviewed-on: https://code.wireshark.org/review/37428
Reviewed-by: Guy Harris <gharris@sonic.net>
2020-06-10 05:23:32 +00:00
Guy Harris b9943e57e8 ospf: explain why we don't worry about in_cksum() returning 0xFFFF.
Change-Id: I1e858c38be1b7a206b1bbb9371c6f37b7a7b6722
Reviewed-on: https://code.wireshark.org/review/37427
Reviewed-by: Guy Harris <gharris@sonic.net>
2020-06-10 05:15:39 +00:00
Guy Harris 05b2804cb4 ip: explain why we don't worry about ip_checksum_tvb() returning 0xFFFF.
Change-Id: I0040fedc743759eed604a6a0464d59de5c5261a2
Reviewed-on: https://code.wireshark.org/review/37426
Reviewed-by: Guy Harris <gharris@sonic.net>
2020-06-10 04:56:47 +00:00
Guy Harris a6f37c5a35 udp: explain why we don't worry about in_cksum() returning 0xFFFF.
Change-Id: If86a9292796201173308aff7eed58581b8a268f4
Reviewed-on: https://code.wireshark.org/review/37425
Reviewed-by: Guy Harris <gharris@sonic.net>
2020-06-10 04:46:20 +00:00
Joakim Karlsson d6c7699790 diameter: update ULI list according to TS 29.061 v15.5.0
Change-Id: Ief7de8ae3cf74e2de63aac7172bd9b3a04e3b142
Reviewed-on: https://code.wireshark.org/review/37413
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-10 03:42:04 +00:00
Guy Harris ef76c3a2e2 nhrp: do more packet sanity checks.
Clean up other stuff while we're at it.

Change-Id: Ia544df0b0c9549cb28944b15c6e84ee0700dd08e
Reviewed-on: https://code.wireshark.org/review/37423
Petri-Dish: Guy Harris <gharris@sonic.net>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <gharris@sonic.net>
2020-06-09 23:52:54 +00:00
Guy Harris cf66efa82e assa_r3: don't use proto_tree_add_string() on a non-string field.
Do as we do elsewhere; use proto_tree_add_none_format().

(Should this be done with an expert info?)

Change-Id: I7f4514b6f4b6687b21c1912292f1153593bf8440
Reviewed-on: https://code.wireshark.org/review/37416
Petri-Dish: Guy Harris <gharris@sonic.net>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <gharris@sonic.net>
2020-06-09 23:19:29 +00:00
Martin Kaiser 440e1d4322 dvb-ci: (trivial) fix two comments
fix the wording in one place, remove an obsolete comment nearby

Change-Id: I1df9078366f460cd8a3cbe00f96806c97b05f8a0
Reviewed-on: https://code.wireshark.org/review/37415
Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
Petri-Dish: Martin Kaiser <wireshark@kaiser.cx>
Tested-by: Petri Dish Buildbot
Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
2020-06-09 21:03:54 +00:00
Joakim Karlsson 6219f82390 radius: update ULI list according to TS 29.061 v15.5.0
Change-Id: I1b27fceaf481f37c79c078981db9fcb9bc1f8901
Reviewed-on: https://code.wireshark.org/review/37414
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-09 20:14:17 +00:00
Dario Lombardo fe5bcbaab0 usb-hid: skip report descriptor if caller doesn't provide it.
Callers of this function (such as packet-btatt) can pass usb_conv_info = NULL.
In this case just skip the storing of the report.

Bug: 16589
Change-Id: I29e7a15d20def5ce90aa3e1b1b3b960f11949e59
Reviewed-on: https://code.wireshark.org/review/37368
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Filipe Laíns <lains@archlinux.org>
Reviewed-by: Tomasz Moń <desowin@gmail.com>
2020-06-09 11:02:32 +00:00
Anders Broman 439b77d032 lbmsrs: Fix bug in heuristic causing malformed packet.
Change-Id: Ib3faa627fadb56833df0f37debeab1f8f0fe2042
Reviewed-on: https://code.wireshark.org/review/37410
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-09 07:39:20 +00:00
Martin Mathieson 9fd024a050 Add some missing values into value_strings.
Detected using a messy modification to CHECK_HF_VALUE(), which
runs when ENABLE_CHECK_FILTER is defined. There are doubtless more,
but finding specs is often hard and time-consuming.

Change-Id: Ifae3fa0d2361e15c71a3e26ad22536dbed0ca246
Reviewed-on: https://code.wireshark.org/review/37406
Petri-Dish: Martin Mathieson <martin.r.mathieson@googlemail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-09 04:52:20 +00:00
Pascal Quantin 39845dcdc6 Windows: upgrade Npcap to 0.9993
Change-Id: Ibea3abb6e3938676ecaffa8279db22c9f78b81f8
Reviewed-on: https://code.wireshark.org/review/37408
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-06-08 20:23:41 +00:00
Anders Broman 24b19be0dd GSM A Common: Advance offset after reading type_of_shape.
Change-Id: Ic72c679ccacd707129574d62d20719e35746a3bf
Reviewed-on: https://code.wireshark.org/review/37401
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-08 08:38:46 +00:00
Guy Harris bc21aa158c icmp: fix indentation.
Change-Id: I2a9e4ae098fd3c71cc4bfbf5ee56507933a205b7
Reviewed-on: https://code.wireshark.org/review/37402
Reviewed-by: Guy Harris <gharris@sonic.net>
2020-06-08 08:24:33 +00:00
Orgad Shaneh 73457289ee TPNCP: Update tpncp.dat
Change-Id: I2bcc14858747414821fe34e4b0769d5ff839a653
Reviewed-on: https://code.wireshark.org/review/37400
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-08 08:02:27 +00:00
Gerald Combs 93bf3fd3ae sync_pipe_write: Fixup a comment.
Use more accurate terminology.

Change-Id: Ie753010640ee831650e408d0989971741e43ba70
Reviewed-on: https://code.wireshark.org/review/37399
Reviewed-by: Gerald Combs <gerald@wireshark.org>
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-08 05:08:35 +00:00
Gerald Combs 095d897381 wmem: Use better terminology.
The scopes used by wmem_map_new_autoreset and wmem_tree_new_autoreset
store the metadata and data for each structure. Use those terms instead
of "master" and "slave".

Change-Id: I3b7c958b4caf3a1245e680f5ca960431b75ad5be
Reviewed-on: https://code.wireshark.org/review/37398
Reviewed-by: Gerald Combs <gerald@wireshark.org>
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-08 05:08:22 +00:00
Gerald Combs 43b5c63aea Tools: Use better terminology.
"Allowed" is a perfectly fine, non-biased word for designating things
that are allowed.

Change-Id: Ia1e0642a073210f0475fba3d437eac654ec36cb5
Reviewed-on: https://code.wireshark.org/review/37397
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-08 05:06:10 +00:00
Gerald Combs 668161f8dd [Automatic update for 2020-06-07]
Update manuf, services enterprise numbers, translations, and other items.

Change-Id: I09905565b83aeb28c1976d321a32f616f4527e25
Reviewed-on: https://code.wireshark.org/review/37390
Reviewed-by: Gerald Combs <gerald@wireshark.org>
2020-06-07 08:18:28 +00:00
Jaap Keuter 35cdb63ecb PIM: update hello options list
Update the list of PIM Hello options based on the current IANA list
of PIM parameters.

Bug: 16614
Change-Id: I4147362ae554423bcc118f72c1ff43034ba3fb63
Reviewed-on: https://code.wireshark.org/review/37389
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-06 15:16:25 +00:00
Uli Heilmeier 66d5bb9dbe proto.c: check for proto_item_get_display_repr()
Check if proto item exists

Bug: 16592
Change-Id: Ida6950e94dfee935e448198df6199e96b1140aa2
Reviewed-on: https://code.wireshark.org/review/37350
Petri-Dish: Jaap Keuter <jaap.keuter@xs4all.nl>
Tested-by: Petri Dish Buildbot
Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
2020-06-06 14:51:22 +00:00
Uli Heilmeier 7c6e1a02ce BTLE: check for btle_context
Check for btle_context before accessing it.

Bug: 16612
Change-Id: I8ad0237a6f742f4091e886b0151917542d2eea82
Reviewed-on: https://code.wireshark.org/review/37387
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-06 14:38:34 +00:00
Jaap Keuter a5886341e4 BTHFP: Add support for battery level indication
Bug: 16609
Change-Id: I83a55b81f1e9e7d623edad576975e9a452f6146a
Reviewed-on: https://code.wireshark.org/review/37385
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-06 14:37:14 +00:00
Pavel Strnad 4ef8c1880d NAS-5GS: fix decoding of SM PDU DN request container
SM PDU DN request container (9.11.4.15) is using TLV format
in PDU session establishment request messgae
based on 24.501/chapter 8.3.1.1

Change-Id: I9a85b321c051b798a207fdf251a273c1e7a5490e
Reviewed-on: https://code.wireshark.org/review/37386
Reviewed-by: Anders Broman <a.broman58@gmail.com>
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
2020-06-06 11:25:15 +00:00
Orgad Shaneh df2f5cc677 ACDR: Fix T38 with added header
The added header is UDP, like in DTLS, and unlike all other
protocols which have IP+UDP.

Simplify also DTLS handling while at it.

Change-Id: Ie76a19087991c4f5c0d16586b67aaab69d0c5aaf
Reviewed-on: https://code.wireshark.org/review/37378
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-05 10:35:00 +00:00
Alexis La Goutte c125e306c6 NSIS: Add styles/translations to uninstallation
Bug:16601
Change-Id: I5a1ce4fb373f5eb3a88eedda3395dcb1599fbbe0
Reviewed-on: https://code.wireshark.org/review/37383
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-05 07:54:34 +00:00
Anders Broman bc7c5ca628 Diameter-3gpp: 3GPP AVP 525 Service-URN show it as string if printable.
Change-Id: I71d46dfbb205448704792d5fafbd3986ccd2f773
Reviewed-on: https://code.wireshark.org/review/37377
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2020-06-04 18:30:18 +00:00