wireshark/epan/dissectors
Jorge Mora 8f0f691312 RPC-over-RDMA: add reassembly for reply, read and write chunks
The RDMA reply chunk is used for a large RPC reply which does not fit
into a single SEND operation and does not have a single large opaque,
e.g., NFS READDIR. The RPC call packet is used only to set up the RDMA
reply chunk. The whole RPC reply is transferred via RDMA writes.
Fragments are added on any RDMA write packet, RDMA_WRITE_ONLY,
RDMA_WRITE_FIRST, etc., and the reassembly is done on the reply
message. The RPC reply packet has no data (RDMA_NOMSG) but
fragments are reassembled and the whole RPC reply is dissected.

The RDMA read chunk list is used for a large RPC call which has
at least one large opaque, e.g., NFS WRITE. The RPC call packet
is used only to set up the RDMA read chunk list. It also has the
reduced message data which includes the first fragment (XDR data
up to and including the opaque length), but it could also have
fragments between each read chunk and the last fragment after
the last read chunk data. The reduced message is then broken
down into fragments and inserted into the reassembly table.
Since the RDMA read chunk list is set up in the RPC call
then do not dissect the upper layer in this case and just
label rest of packet as "Data" since the reassembly will
be done on the last read response.

The protocol gives the XDR position where each chunk must be
inserted into the XDR stream thus as long as the maximum
I/O size is known it is possible to know exactly where to
insert these fragments. This maximum I/O size is set on the
first READ_RESPONSE_FIRST or READ_RESPONSE_MIDDLE but in case
where any of these packets have not been seen then a value
of 100 is used (real value should be at least 1024) but in
this case the message numbers are not consecutive between
chunks but since the total size of all chunks is verified to
make sure there is a complete message to reassemble then all
fragments should be in the correct order.

Fragments are added on any RDMA read packet: RDMA_READ_RESPONSE_ONLY,
RDMA_READ_RESPONSE_FIRST, etc., and the reassembly is done on the
last read response. Since there could be multiple chunks and each
chunk could have multiple segments then the total size must be
checked to complete the reassembly because in this case there
will be multiple READ_RESPONSE_LAST.

The RDMA write chunk list is used for a large RPC reply which has
at least one large opaque, e.g., NFS READ. The RPC call packet is
used only to set up the RDMA write chunk list. The opaque data is
then transferred via RDMA writes and then the RPC reply packet is
sent from the server.

The RPC reply packet has the reduced message data which includes
the first fragment (XDR data up to and including the opaque length),
but it could also have fragments between each write chunk and the
last fragment after the last write chunk data. The reduced message
is then broken down into fragments and inserted into the reassembly
table. Since the RPC reply is sent after all the RDMA writes then
the fragments from these writes must be inserted in the correct
order: the first RDMA write fragment is inserted with message
number 1, since the first fragment (message number 0) will come
from the very last packet (the RPC reply with RDMA_MSG). Also,
the last packet could have fragments which must be inserted in
between chunk data, therefore message numbers from one chunk to
another are not consecutive.

In contrast with the RDMA read chunk list, the protocol does not
allow an XDR position in the RDMA write chunks, since the RPC
client knows exactly where to insert the chunk's data because
of the virtual address of the DDP (direct data placement) item.
There is no way to map a virtual address with an XDR position,
thus in order to reassemble the XDR stream a two pass approach
is used. In the first pass (visited = 0), all RDMA writes are
inserted as fragments leaving a gap in between each chunk.
Then the dissector for the upper layer is called with a flag
letting the dissector know that it is dealing with a reduced
message so all DDP enabled operations handle the opaque data
as having only the size of the opaque but not the data and
reporting back the offset from the end of the message.
Once the upper layer dissector returns, this layer now has a
list of DDP eligible item's offsets which are then translated
into XDR offsets and then the RPC reply packet is broken into
fragments and inserted in the right places as in the case for
the RDMA read chunk list. On the second pass (visited = 1),
all fragments have already been inserted into the reassembly
table so it just needs to reassembled the whole message and
then call the upper layer dissector.

RFC 8267 specifies the upper layer bindings to RPC-over-RDMA
version 1 for NFS. Since RPC-over-RDMA version 1 specifies the
XDR position for the read chunks then only the write chunk DDP
eligible items are handled in the upper layer, in this case the
NFS layer. These are the only procedures or operations eligible
for write chunks:
* The opaque data result in the NFS READ procedure or operation
* The pathname or linkdata result in the NFS READLINK procedure
  or operation

Two functions are defined to signal and report back the DDP
eligible item's offset to be used by the upper layers.
Function rpcrdma_is_reduced() is used to signal the upper layer
that it is dealing with a reduced data message and thus should
ignore DDP eligible item's opaque processing and just report
back the offset where the opaque data should be. This reporting
is done using the second function rpcrdma_insert_offset().

Reassembly is done for InfiniBand only. Reassemble fragments using
the packet sequence number (PSN) of each RDMA I/O fragment to make
sure the message is reassembled correctly when fragments are sent
out of order. Also a unique message id is used for each message so
fragments are reassembled correctly when fragments of different
messages are sent in parallel.

The reassembled message could be composed of multiple chunks
and each chunk in turn could be composed of multiple segments
in which each segment could be composed of multiple requests
and of course each request is composed of one or more fragments.
Thus in order to have all fragments for each segment belonging
to the same message, a list of segments is created and all
segments belonging to the same message are initialized with
the same message id. These segments are initialized and added
to the list on the call side on RDMA_MSG by calling
process_rdma_lists.

Bug: 13260
Change-Id: Icf57d7c46c3ba1de5d019265eb151a81d6019dfd
Reviewed-on: https://code.wireshark.org/review/24613
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-03-24 07:09:59 +00:00
..
asn1 NR-RRC: remove a redundant declaration 2018-03-22 13:38:58 +00:00
dcerpc dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
pidl dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
.editorconfig F1AP: initial dissector submission based on v15.0.0 2018-03-16 19:10:25 +00:00
CMakeLists.txt RPC-over-RDMA: add reassembly for reply, read and write chunks 2018-03-24 07:09:59 +00:00
CMakeListsCustom.txt.example dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
Custom.common
Makefile.am RPC-over-RDMA: add reassembly for reply, read and write chunks 2018-03-24 07:09:59 +00:00
README.X11
dissectors.h replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
errno.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
file-btsnoop.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
file-elf.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
file-file.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
file-file.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
file-gif.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
file-jpeg.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
file-mp4.c mp4: limit the recursion depth for boxes 2018-02-28 22:33:51 +00:00
file-pcap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
file-pcapng.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
file-png.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
make-dissectors.c replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
packet-2dparityfec.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-3com-njack.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-3com-xns.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-3g-a11.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-6lowpan.c 6lowpan: Add option to toggle IID U/L bit 2018-03-18 22:26:24 +00:00
packet-6lowpan.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-9p.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-HI2Operations.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-a21.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-a21.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-aarp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-aastra-aasp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-acap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-acn.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-acp133.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-acp133.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-acr122.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-acse.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-acse.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-actrace.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-actrace.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-adb.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-adb_cs.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-adb_service.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-adb_service.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-adwin-config.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-adwin.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-aeron.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-afp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-afp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-afs.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-agentx.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-aim.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ajp13.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-alcap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-alcap.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-alljoyn.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-amqp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-amr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-amt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ancp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ans.c ans: remove unnecessary if (tree) checks 2018-02-23 05:13:34 +00:00
packet-ansi_637.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ansi_683.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ansi_801.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ansi_a.c Get rid of more new_ prefixes for statistics functions and types. 2018-02-19 00:12:51 +00:00
packet-ansi_a.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ansi_map.c Get rid of more new_ prefixes for statistics functions and types. 2018-02-19 00:12:51 +00:00
packet-ansi_map.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ansi_tcap.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-ansi_tcap.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-aodv.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-aoe.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-aol.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ap1394.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-app-pkix-cert.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-applemidi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-aprs.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ar_drone.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-arcnet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-armagetronad.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-arp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-arp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-artemis.c replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
packet-artnet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-aruba-adp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-aruba-erm.c Fix the "pointer to function that generates a label" values. 2018-02-13 18:06:11 +00:00
packet-aruba-iap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-aruba-papi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-asap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ascend.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-asf.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-assa_r3.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-asterix.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-at.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-atalk.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-atalk.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ath.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-atm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-atm.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-atmtcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-atn-cm.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-atn-cpdlc.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-atn-ulcs.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-atn-ulcs.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-auto_rp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-avsp.c Add Arista Vendor Specific Protocol (Ethertype) dissector 2018-03-22 20:15:12 +00:00
packet-ax25-kiss.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ax25-nol3.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ax25.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ax4000.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ayiya.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-babel.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bacapp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bacapp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bacnet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bacnet.h replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
packet-banana.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bat.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-batadv.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bctp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-beep.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bencode.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ber.c ber/per: assert actx to avoid null dereference (found by clang). 2018-03-12 07:17:01 +00:00
packet-ber.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bfcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bfd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bfd.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bgp.c BGP: Heuristic for IPv6 NLRI path identifier 2018-02-28 06:20:20 +00:00
packet-bgp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bitcoin.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bittorrent.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bjnp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bluecom.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bluetooth.c bluetooth: Update Assigned Numbers 2018-03-07 10:11:24 +00:00
packet-bluetooth.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bmc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bmp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bofl.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bootp.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-bootparams.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bpdu.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bpq.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-brcm-tag.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-brdwlk.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-brp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bssap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bssap.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bssgp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bssgp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bt-dht.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bt-utp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bt3ds.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btamp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btatt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btatt.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btavctp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btavctp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btavdtp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btavdtp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btavrcp.c Bluetooth: Initialize ett features for Media Player Dissection 2018-03-02 05:49:39 +00:00
packet-btavrcp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btbnep.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btbredr_rf.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bthci_acl.c Epan+Qt: Invalidate cached column strings. 2018-03-15 12:19:23 +00:00
packet-bthci_acl.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bthci_cmd.c Fix the "pointer to function that generates a label" values. 2018-02-13 18:06:11 +00:00
packet-bthci_cmd.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bthci_evt.c Bluetooth: HCI_EVT: implement LE Extended Advertising Report 2018-02-21 08:27:30 +00:00
packet-bthci_evt.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bthci_sco.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bthci_sco.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bthci_vendor.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bthcrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bthfp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bthid.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bthsp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btl2cap.c Epan+Qt: Invalidate cached column strings. 2018-03-15 12:19:23 +00:00
packet-btl2cap.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btle.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btle.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btle_rf.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btmcap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btmesh.c replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
packet-btrfcomm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btrfcomm.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btsap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btsdp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btsdp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-btsmp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bvlc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-bzr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-c15ch.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-c1222.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-c1222.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-calcappprotocol.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-camel.c Get rid of more new_ prefixes for statistics functions and types. 2018-02-19 00:12:51 +00:00
packet-camel.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-caneth.c replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
packet-canopen.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-capwap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-carp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cast.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-catapult-dct2000.c Catapult DCT2000: Update sscanf patterns, and avoid calling if possible 2018-02-22 16:26:20 +00:00
packet-cattp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cbor.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ccsds.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cdp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cdt.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-cdt.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-cell_broadcast.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cell_broadcast.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ceph.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-cfdp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cfm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cgmp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-chargen.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-charging_ase.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-charging_ase.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-chdlc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-chdlc.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cigi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cimd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cimetrics.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cip.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cipmotion.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cipsafety.c Put back casts needed for C++ compatibility. 2018-02-17 21:23:11 +00:00
packet-cipsafety.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cisco-erspan.c Don't crash for ERSPAN packets in Linux cooked captures. 2018-03-22 21:16:40 +00:00
packet-cisco-fp-mim.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-cisco-marker.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cisco-metadata.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cisco-oui.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cisco-sm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cisco-ttag.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cisco-wids.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-classicstun.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-clearcase.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-clearcase.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-clip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-clique-rm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-clnp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cmip.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-cmip.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-cmp.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-cmp.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-cmpp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cms.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-cms.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-cnip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-coap.c OSCORE: Decrypt responses and dissect plaintext with CoAP functions 2018-03-16 15:02:48 +00:00
packet-coap.h CoAP: Refactor code, option and payload dissection 2018-03-16 15:02:36 +00:00
packet-collectd.c No need to cast away constness. 2018-02-17 19:34:02 +00:00
packet-componentstatus.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cops.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-corosync-totemnet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-corosync-totemsrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-coseventcomm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cosine.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cosnaming.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-couchbase.c Couchbase: update opcodes and decode AUDIT_PUT as JSON 2018-03-24 07:05:02 +00:00
packet-cp2179.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cpfi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cpha.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cql.c CQL: ensure that there is at least one column to display rows 2018-03-17 20:20:23 +00:00
packet-credssp.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-credssp.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-crmf.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-crmf.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-csm-encaps.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-csn1.c csn1: set pointer before using it (found by clang). 2018-02-28 12:11:32 +00:00
packet-csn1.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ctdb.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cups.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-cvspserver.c replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
packet-daap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dap.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-dap.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-data.c data: Add option to uncompress compressed data 2018-02-13 11:43:59 +00:00
packet-daytime.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-db-lsp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dbus.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcc.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dccp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dccp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-atsvc.c
packet-dcerpc-atsvc.h
packet-dcerpc-bossvr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-browser.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-browser.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-budb.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-budb.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-butc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-butc.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-cds_clerkserver.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-cds_solicit.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-clusapi.c
packet-dcerpc-clusapi.h
packet-dcerpc-conv.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-cprpc_server.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-dce122.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-dce122.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-dcom.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-dfs.c
packet-dcerpc-dfs.h
packet-dcerpc-dnsserver.c
packet-dcerpc-dnsserver.h
packet-dcerpc-drsuapi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-drsuapi.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-dssetup.c
packet-dcerpc-dssetup.h
packet-dcerpc-dtsprovider.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-dtsstime_req.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-efs.c
packet-dcerpc-efs.h
packet-dcerpc-epm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-eventlog.c
packet-dcerpc-eventlog.h
packet-dcerpc-fileexp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-fldb.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-frsapi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-frsapi.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-frsrpc.c
packet-dcerpc-frsrpc.h
packet-dcerpc-frstrans.c
packet-dcerpc-frstrans.h
packet-dcerpc-ftserver.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-icl_rpc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-initshutdown.c
packet-dcerpc-initshutdown.h
packet-dcerpc-krb5rpc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-llb.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-lsa.c
packet-dcerpc-lsa.h
packet-dcerpc-mapi.c
packet-dcerpc-mapi.h
packet-dcerpc-mdssvc.c
packet-dcerpc-mdssvc.h
packet-dcerpc-messenger.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-mgmt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-misc.c
packet-dcerpc-misc.h
packet-dcerpc-ndr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-netlogon.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-netlogon.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-nspi.c
packet-dcerpc-nspi.h
packet-dcerpc-nt.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-dcerpc-nt.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-pnp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-pnp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rdaclif.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rep_proc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rfr.c
packet-dcerpc-rfr.h
packet-dcerpc-roverride.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rpriv.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rras.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rras.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_acct.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_attr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_attr_schema.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_bind.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_misc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_pgo.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_plcy.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_prop_acct.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_prop_acl.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_prop_attr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_prop_pgo.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_prop_plcy.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_pwd_mgmt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_repadm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_replist.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_repmgr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rs_unix.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-rsec_login.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-samr.c
packet-dcerpc-samr.h
packet-dcerpc-secidmap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-spoolss.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-spoolss.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-srvsvc.c
packet-dcerpc-srvsvc.h
packet-dcerpc-svcctl.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-svcctl.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-tapi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-tapi.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-tkn4int.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-trksvr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-ubikdisk.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-ubikvote.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-update.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcerpc-winreg.c
packet-dcerpc-winreg.h
packet-dcerpc-witness.c
packet-dcerpc-witness.h
packet-dcerpc-wkssvc.c
packet-dcerpc-wkssvc.h
packet-dcerpc-wzcsvc.c
packet-dcerpc-wzcsvc.h
packet-dcerpc.c dcerpc_decode_as_change() doesn't need to change the old binding. 2018-02-17 20:20:08 +00:00
packet-dcerpc.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcm.c dcm: Fixed crash in dissector, and other bugs Some tag descriptions which are added to the parent item (32 tags). If one of those was empty a crash occurred. Mainly the RTPlan modality was affected. 2018-03-06 15:43:36 +00:00
packet-dcom-dispatch.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcom-dispatch.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcom-oxid.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcom-remact.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcom-remunkn.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcom-sysact.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcom.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-dcom.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dcp-etsi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ddtp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dec-bpdu.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dec-dnart.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dect.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-devicenet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dhcp-failover.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dhcpv6.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-diameter.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-diameter.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-diameter_3gpp.c [Diameter-3gpp] Add bit 8 in Access-Restriction-Data according to 3GPP 2018-02-26 09:53:49 +00:00
packet-diameter_3gpp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-diffserv-mpls-common.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-diffserv-mpls-common.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dis.c The number of beams field has the wrong title: was System Data Length 2018-03-17 07:26:01 +00:00
packet-disp.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-disp.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-distcc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dji-uav.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dlm3.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dlsw.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dmp.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-dmx.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-dnp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dns.c dns: fix indentation. 2018-03-22 06:19:11 +00:00
packet-dns.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-docsis-macmgmt.c Make the DOCSIS dissector a built-in dissector. 2018-02-13 20:15:19 +00:00
packet-docsis-tlv.c Make the DOCSIS dissector a built-in dissector. 2018-02-13 20:15:19 +00:00
packet-docsis-tlv.h Make the DOCSIS dissector a built-in dissector. 2018-02-13 20:15:19 +00:00
packet-docsis-vendor.c Make the DOCSIS dissector a built-in dissector. 2018-02-13 20:15:19 +00:00
packet-docsis.c DOCSIS: Remove concatenated PDU dissection. 2018-02-20 06:19:53 +00:00
packet-dof.c DOF: restore correct memory scope for decrypted buffer 2018-03-11 06:39:12 +00:00
packet-dop.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-dop.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-dplay.c spdx: use consistent formatting for GPL-2.0-or-later 2018-03-09 17:32:36 +00:00
packet-dpnet.c spdx: use consistent formatting for GPL-2.0-or-later 2018-03-09 17:32:36 +00:00
packet-dpnss-link.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dpnss.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-drda.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dsi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dsp.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-dsp.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-dsr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dtcp-ip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dtls.c (D)TLS: restrict ssl.ignore_ssl_mac_failed preference to ssl 2018-03-15 06:01:17 +00:00
packet-dtls.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dtn.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dtn.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dtp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dtpt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dua.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dvb-ait.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dvb-bat.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dvb-data-mpe.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dvb-eit.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dvb-ipdc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dvb-nit.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dvb-s2-bb.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dvb-sdt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dvb-tdt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dvb-tot.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dvbci.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dvbci.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-dvmrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-e100.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-e164.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-e164.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-e212.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-e212.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-eap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-eapol.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-eapol.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-echo.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ecmp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ecp-oui.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ecp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-edonkey.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-edonkey.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-egd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ehdlc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ehs.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-eigrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-eigrp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-eiss.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-elasticsearch.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-elcom.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-elmi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-enc.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-enip.c ENIP packets are not decoded as ENIP anymore 2018-03-10 21:12:51 +00:00
packet-enip.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-enrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-enttec.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-epl-profile-parser.c Don't cast away constness. 2018-03-08 05:17:46 +00:00
packet-epl.c Constify a bunch of pointers and some casts. 2018-02-17 20:43:22 +00:00
packet-epl.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-epl_v1.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-epmd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-epmd.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-epon.c dissectors: epon: Improve preamble detection 2018-03-04 08:41:12 +00:00
packet-erf.c Make a function not used outside this file static. 2018-03-18 20:55:43 +00:00
packet-erf.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-erldp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-esio.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-esis.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ess.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-ess.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-etag.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-etch.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-eth.c eth: fix null pointer dereference when called from Lua 2018-03-12 04:44:24 +00:00
packet-eth.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-etherip.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-ethertype.c Add Arista Vendor Specific Protocol (Ethertype) dissector 2018-03-22 20:15:12 +00:00
packet-etsi_card_app_toolkit.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-etv.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-evrc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-exec.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-exported_pdu.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-extreme.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-f1ap.c F1AP: initial dissector submission based on v15.0.0 2018-03-16 19:10:25 +00:00
packet-f5ethtrailer.c f5ethtrailler: Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang 2018-03-14 21:53:53 +00:00
packet-f5ethtrailer.h Adapt to current WS code base to make it compile and run without warnings or errors 2018-03-11 11:17:47 +00:00
packet-fbzero.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fc.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fc00.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcbls.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcct.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcct.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcdns.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcels.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcels.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcfcs.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcfcs.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcfzs.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcfzs.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcgi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fclctl.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fclctl.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcoe.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcoib.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcsb3.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcsb3.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcsp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcswils.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fcswils.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fddi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fefd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ff.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ff.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-finger.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fix.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fix.h
packet-flexnet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-flexray.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-flip.c Fix the "pointer to function that generates a label" values. 2018-02-13 18:06:11 +00:00
packet-fmp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fmp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fmp_notify.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-fmtp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-force10-oui.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-forces.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-foundry.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fp_hint.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fp_mux.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fpp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-fractalgeneratorprotocol.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-frame.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-frame.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ftam.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-ftam.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-ftp.c ftp: calculate bitrate of ft-data session 2018-02-21 18:49:29 +00:00
packet-fw1.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-g723.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gadu-gadu.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gdb.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gdsdb.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gearman.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ged125.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-geneve.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gfp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gias.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gift.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-giop.c GIOP: use wmem packet scope for get_modname_from_repoid() 2018-03-07 06:04:44 +00:00
packet-giop.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-git.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-glbp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gluster.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gluster_cli.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gluster_pmap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-glusterd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-glusterfs.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-glusterfs_hndsk.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gmhdr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gmr1_bcch.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gmr1_common.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gmr1_common.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gmr1_dtap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gmr1_rach.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gmr1_rr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gmr1_rr.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gmrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gnutella.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gnutella.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-goose.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-gopher.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gpef.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gprs-llc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gprscdr.c GPRSCDR: fix bitrates in EPCQoSInformation 2018-03-21 10:44:54 +00:00
packet-gprscdr.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-gquic.c GQUIC: Try to fix ACK frame with Q039 2018-02-28 06:28:33 +00:00
packet-gre.c ERSPAN: Various small cleanups and enhancements 2018-03-18 10:14:03 +00:00
packet-gre.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-grpc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_a_bssmap.c GSM BSSMAP: fix a typo in in speech version range_string 2018-03-13 11:05:48 +00:00
packet-gsm_a_common.c [NAS 5GS] Add dissector for NAS5GS 3GPP TS 24.501. 2018-02-26 11:27:05 +00:00
packet-gsm_a_common.h [NAS-5GS] Dissect more of the protocol. 2018-02-27 20:06:23 +00:00
packet-gsm_a_dtap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_a_gm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_a_rp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_a_rr.c [GSM A RR] RXLEV-SUB-SERVING-CELL displayed with wrong bitmask. 2018-02-21 17:15:03 +00:00
packet-gsm_a_rr.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_abis_om2000.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_abis_oml.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_abis_pgsl.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_abis_tfp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_bsslap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_bssmap_le.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_cbch.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_ipa.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_map.c Get rid of more new_ prefixes for statistics functions and types. 2018-02-19 00:12:51 +00:00
packet-gsm_map.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-gsm_osmux.c Constify a pointer to squelch a warning. 2018-02-17 21:11:48 +00:00
packet-gsm_rlcmac.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_rlcmac.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_sim.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_sms.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_sms.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_sms_ud.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsm_um.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsmtap.c GSMTAP: add the handle to dissect LTE NAS EPS messages 2018-03-19 15:51:13 +00:00
packet-gsmtap.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gsmtap_log.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gssapi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gssapi.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gtp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gtp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gtpv2.c [GTPv2] Add new IE Secondary RAT Usage Data Report 2018-03-14 11:28:24 +00:00
packet-gtpv2.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gvcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gvrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-gvsp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h1.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h221_nonstd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h223.c H223: fix a memory leak in conversation management 2018-03-07 06:06:49 +00:00
packet-h223.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h225.c Get rid of more new_ prefixes for statistics functions and types. 2018-02-19 00:12:51 +00:00
packet-h225.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-h235.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-h235.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-h245.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-h245.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-h248.c Regenerate dissector. 2018-03-09 20:12:43 +00:00
packet-h248.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h248_2.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h248_3gpp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h248_7.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h248_10.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h248_annex_c.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h248_annex_e.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h248_q1950.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h261.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h263.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h263.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h263p.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h264.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h264.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h282.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-h283.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-h323.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-h323.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-h450-ros.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-h450-ros.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-h450.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-h460.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-h501.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-hartip.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-hazelcast.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hci_h1.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hci_h4.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hci_mon.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hci_usb.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hclnfsd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hcrt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hdcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hdcp2.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hdfs.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hdfsdata.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hdmi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hiqnet.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-hislip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hl7.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hnbap.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-homeplug-av.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-homeplug.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-homepna.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hp-erm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hpext.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hpext.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hpfeeds.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hpsw.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hpteam.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hsms.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hsr-prp-supervision.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hsr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hsrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-http-urlencoded.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-http.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-http.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-http2.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-http2.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-hyperscsi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-i2c.c Fix the "pointer to function that generates a label" values. 2018-02-13 18:06:11 +00:00
packet-iana-oui.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-iana-oui.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-iapp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-iax2.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-iax2.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-icap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-icep.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-icmp.c Epan+Qt: Invalidate cached column strings. 2018-03-15 12:19:23 +00:00
packet-icmp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-icmpv6.c Epan+Qt: Invalidate cached column strings. 2018-03-15 12:19:23 +00:00
packet-icp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-icq.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-idmp.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-idmp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-idp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-idp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-idrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-iec104.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ieee802a.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ieee802a.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ieee1722.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ieee1905.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ieee8021ah.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ieee8023.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ieee8023.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ieee17221.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ieee80211-netmon.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ieee80211-prism.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ieee80211-radio.c ieee80211: Remove obsolete assignments 2018-02-20 19:01:33 +00:00
packet-ieee80211-radio.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ieee80211-radiotap-defs.h dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-ieee80211-radiotap-iter.c spdx: convert files with multiple licenses. 2018-03-09 12:13:23 +00:00
packet-ieee80211-radiotap-iter.h spdx: convert files with multiple licenses. 2018-03-09 12:13:23 +00:00
packet-ieee80211-radiotap.c Fix capitalization and white space. 2018-02-24 02:33:46 +00:00
packet-ieee80211-wlancap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ieee80211.c packet-ieee80211.c: Fix runtime warning "field wlan.trigger.he.common_info is not of type FT_CHAR or an FT_{U}INTn type" 2018-03-23 19:40:49 +00:00
packet-ieee80211.h WIP:ieee80211: HotSpot 2.0 fixes. 2018-03-07 08:30:12 +00:00
packet-ieee802154.c ieee802154: support 6top protocol (6P) draft-10 2018-03-22 06:17:09 +00:00
packet-ieee802154.h ieee802154: support 6top protocol (6P) draft-10 2018-03-22 06:17:09 +00:00
packet-ifcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-igap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-igmp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-igmp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-igrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ilp.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-imap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-imf.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-imf.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-inap.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-inap.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-indigocare-icall.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-indigocare-netrix.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-infiniband.c Fix the "pointer to function that generates a label" values. 2018-02-13 18:06:11 +00:00
packet-infiniband.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-infiniband_sdp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-interlink.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ip.c Epan+Qt: Invalidate cached column strings. 2018-03-15 12:19:23 +00:00
packet-ip.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipars.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipdc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipdr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-iperf.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipfc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipmi-app.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipmi-bridge.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipmi-chassis.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipmi-picmg.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipmi-pps.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipmi-se.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipmi-session.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipmi-storage.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipmi-trace.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipmi-transport.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipmi-update.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipmi-vita.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipmi.c IPMI: Disable bus command dissection. 2018-02-22 22:27:39 +00:00
packet-ipmi.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipnet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipoib.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipos.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipsec-tcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipsec-udp.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-ipsec.c ipsec: zero memory in get_full_ipv6_addr (found by clang). 2018-03-06 16:49:42 +00:00
packet-ipsec.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipsi-ctl.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipv6.c MaxMindDB: Add country ISO codes. 2018-03-10 19:21:42 +00:00
packet-ipvs-syncd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipx.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipx.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ipxwan.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-irc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isakmp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isakmp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-iscsi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isdn-sup.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-isdn.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-iser.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isis-clv.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isis-clv.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isis-hello.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isis-lsp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isis-snp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isis.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isis.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isl.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isl.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ismacryp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ismp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isns.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-iso7816.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-iso8583.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-iso14443.c Define macros to calculate (2^N)^M, and use them in more places. 2018-02-20 05:27:38 +00:00
packet-iso15765.c Epan+Qt: Invalidate cached column strings. 2018-03-15 12:19:23 +00:00
packet-isobus-vt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isobus.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-isup.c Add wmem alloc parameter to ws_find_media_type_parameter. 2018-03-11 15:07:24 +00:00
packet-isup.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-itdm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-iua.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-iuup.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-iwarp-ddp-rdmap.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-iwarp-ddp-rdmap.h dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-iwarp-mpa.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ixiatrailer.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ixveriwave.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-j1939.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-jmirror.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-jpeg.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-json.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-juniper.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-juniper.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-jxta.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-jxta.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-k12.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-kadm5.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-kafka.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-kdp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-kdsp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-kerberos.c Regenerate dissector from updated template. 2018-03-09 20:14:21 +00:00
packet-kerberos.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-kerberos4.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-kingfisher.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-kink.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-kismet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-klm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-klm.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-knet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-knxnetip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-kpasswd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-kt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-l1-events.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-l2tp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-l2tp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lacp.c LACP: protect a possible infinite loop 2018-03-09 09:49:46 +00:00
packet-lanforge.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lapb.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lapbether.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lapd.c LAPD: fix some memory leaks in conversation management 2018-03-07 06:04:04 +00:00
packet-lapdm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lapdm.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-laplink.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lapsat.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lat.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lbm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lbm.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lbmc.c Don't gratuitously cast away constness. 2018-02-17 21:17:54 +00:00
packet-lbmpdm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lbmpdmtcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lbmr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lbtrm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lbtrm.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lbtru.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lbtru.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lbttcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lbttcp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lcsap.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-lcsap.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-ldap.c ldap: Format text used in COL_INFO 2018-02-17 15:15:14 +00:00
packet-ldap.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ldp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ldp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ldss.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-lg8979.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lge_monitor.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-link16.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-link16.h dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-linx.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lisp-data.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lisp-tcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lisp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-llc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-llc.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lldp.c Add new dot3MauTypes from RFC 4836 2018-03-20 19:12:08 +00:00
packet-llrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-llt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lltd.c LLTD: use wider variables to prevent overflow and infinite loops 2018-02-18 14:22:48 +00:00
packet-lmi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lmp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lnet.c replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
packet-lnet.h replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
packet-logcat-text.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-logcat.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-logotypecertextn.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-logotypecertextn.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lon.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-loop.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-loratap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lorawan.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lpd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lpp.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-lpp.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-lppa.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-lppe.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-lsc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lsd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lte-rrc.c replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
packet-lte-rrc.h replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
packet-ltp.c Epan+Qt: Invalidate cached column strings. 2018-03-15 12:19:23 +00:00
packet-lustre.c replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
packet-lwapp.c LWAPP: define a recursion depth limit 2018-03-07 19:29:56 +00:00
packet-lwm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lwm2mtlv.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-lwres.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-m2ap.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-m2pa.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-m2tp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-m2ua.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-m3ap.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-m3ua.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-maap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mac-lte-framed.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mac-lte.c Add tfs_activated_deactivated 2018-03-10 14:15:37 +00:00
packet-mac-lte.h Tidy up LTE mac and RLC headers - trivial things seen while adding NR versions 2018-03-16 18:04:42 +00:00
packet-mac-nr.c mac-nr: Minor changes 2018-03-22 22:27:08 +00:00
packet-mac-nr.h nr-mac: Add Multiple Entry PHR CE to nr-mac 2018-03-22 09:23:50 +00:00
packet-maccontrol.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-macsec.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mactelnet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-manolito.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-marker.c marker: return unused offset (found by clang). 2018-02-18 21:33:39 +00:00
packet-mausb.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mausb.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mbim.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mbim.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mbtcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mbtcp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mcpe.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mdshdr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-media.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-megaco.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-memcache.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mesh.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-messageanalyzer.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-meta.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-metamako.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mgcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mgcp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mih.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mikey.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mime-encap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mint.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-miop.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mip6.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mka.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mle.c IEEE 802.15.4: Rename ieee802154_payload_* to ieee802154_decrypt_* 2018-02-24 16:50:41 +00:00
packet-mle.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mms.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-mms.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-mmse.c mmse: remove a ton of if (tree) checks 2018-03-04 07:47:30 +00:00
packet-mndp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mojito.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-moldudp.c Fix the "pointer to function that generates a label" values. 2018-02-13 18:06:11 +00:00
packet-moldudp64.c Fix the "pointer to function that generates a label" values. 2018-02-13 18:06:11 +00:00
packet-mongo.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mount.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mount.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mp2t.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mp4ves.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mp4ves.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpeg-audio.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-mpeg-ca.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpeg-descriptor.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpeg-descriptor.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpeg-dsmcc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpeg-pat.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpeg-pes.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-mpeg-pmt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpeg-pmt.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpeg-sect.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpeg-sect.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpeg1.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpls-echo.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpls-mac.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpls-pm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpls-psc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpls-y1711.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpls.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mpls.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mplstp-oam.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mq-base.c mq: fix duplicate entry 2018-02-25 21:17:34 +00:00
packet-mq-pcf.c packet-mq: Code reformat 2018-02-14 05:28:00 +00:00
packet-mq.c packet-mq: Fix for Encoding problem in some MQ Struct 2018-03-24 07:08:47 +00:00
packet-mq.h packet-mq: Code reformat 2018-02-14 05:28:00 +00:00
packet-mqtt-sn.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mqtt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mrcpv2.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mrdisc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mrp-mmrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mrp-msrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mrp-mvrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ms-mms.c Don't gratuitiously cast constness away. 2018-02-17 21:42:49 +00:00
packet-msdp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-msn-messenger.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-msnip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-msnlb.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-msproxy.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-msrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-msrp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mstp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mstp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mswsp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mtp2.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mtp3.c Get rid of more new_ prefixes for statistics functions and types. 2018-02-19 00:12:51 +00:00
packet-mtp3.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mtp3mg.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mudurl.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-multipart.c Add wmem alloc parameter to ws_find_media_type_parameter. 2018-03-11 15:07:24 +00:00
packet-mux27010.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-mysql.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nano.c Nano: do not use packet scope strings in columns 2018-03-14 21:51:35 +00:00
packet-nas_5gs.c NAS-5GS: Start updating to version 0.4.0 2018-03-14 19:05:58 +00:00
packet-nas_eps.c NAS-EPS: added heuristic udp dissector 2018-03-02 13:52:26 +00:00
packet-nasdaq-itch.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nasdaq-soup.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nat-pmp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nb_rtpmux.c [nb_rtpmux] Register dissector by name. 2018-02-14 13:10:55 +00:00
packet-nbap.c NBAP: avoid linking a DCH-ID to itself 2018-03-05 01:55:03 +00:00
packet-nbap.h NBAP: check that DCH ID was initialized before using it 2018-02-18 14:49:12 +00:00
packet-nbd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nbifom.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nbipx.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nbt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ncp-int.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ncp-nmas.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ncp-nmas.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ncp-sss.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ncp-sss.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ncp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ncp2222.inc dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ncs.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ndmp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ndmp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ndp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ndps.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ndps.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-negoex.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netanalyzer.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netbios.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netbios.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netdump.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netflow.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-netgear-ensemble.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netlink-generic.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netlink-netfilter.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netlink-nl80211.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netlink-route.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netlink-sock_diag.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netlink.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netlink.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netmon.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netmon.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netperfmeter.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netrom.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-netsync.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nettl.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-newmail.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nfapi.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-nflog.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nfs.c RPC-over-RDMA: add reassembly for reply, read and write chunks 2018-03-24 07:09:59 +00:00
packet-nfs.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nfsacl.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nfsauth.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nhrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nisplus.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nisplus.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nlm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nlm.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nlsp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nntp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-noe.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nordic_ble.c nordic_ble: Fix delta time start-to-start calculation 2018-03-13 11:41:19 +00:00
packet-novell_pkis.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-nr-rrc.c NR-RRC: remove a redundant declaration 2018-03-22 13:38:58 +00:00
packet-nr-rrc.h F1AP: initial dissector submission based on v15.0.0 2018-03-16 19:10:25 +00:00
packet-ns-ha.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ns-mep.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ns-rpc.c Just use tvb_memeql() to check the signature. 2018-02-23 05:21:55 +00:00
packet-ns_cert_exts.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-nsh.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nsh.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nsip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nsrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nstrace.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nt-oui.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nt-tpcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ntlmssp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ntlmssp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ntp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ntp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-null.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nvme-rdma.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nvme.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nvme.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nwmtp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nwp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-nxp_802154_sniffer.c replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
packet-oampdu.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-obd-ii.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-obex.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ocfs2.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ocsp.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-ocsp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-oicq.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-oipf.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-olsr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-omapi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-omron-fins.c Omron-FINS: Added parsing of CS1 mode FINS memory area codes. 2018-03-14 21:52:36 +00:00
packet-opa-fe.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-opa-mad.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-opa-snc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-opa.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-openflow.c OpenFlow: update openflow_version_values value_string 2018-02-13 22:37:19 +00:00
packet-openflow_v1.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-openflow_v4.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-openflow_v5.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-openflow_v6.c OpenFlow 1.5: add extra property length checks 2018-02-14 05:29:45 +00:00
packet-opensafety.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-opensafety.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-openthread.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-openvpn.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-openwire.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-opsi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-optommp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-osc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-oscore.c OSCORE: Decrypt responses and dissect plaintext with CoAP functions 2018-03-16 15:02:48 +00:00
packet-oscore.h OSCORE: Decrypt responses and dissect plaintext with CoAP functions 2018-03-16 15:02:48 +00:00
packet-osi-options.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-osi-options.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-osi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-osi.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ositp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ospf.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ossp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ouch.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-p1.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-p1.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-p7.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-p7.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-p22.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-p22.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-p772.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-p772.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-p_mul.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-packetbb.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-packetlogger.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pagp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-paltalk.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pana.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-parlay.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pathport.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pcap.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pcap_pktdata.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pcap_pktdata.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pcapng_block.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pcep.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pcli.c Fix the "pointer to function that generates a label" values. 2018-02-13 18:06:11 +00:00
packet-pcnfsd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pcnfsd.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pcp.c PCP: allocate conversation info in file scope 2018-03-07 06:07:21 +00:00
packet-pdc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pdcp-lte.c PDCP: show wrong calculated digest on MAC item, and add some comments about calculation 2018-03-04 00:20:56 +00:00
packet-pdcp-lte.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-peekremote.c Add support for new peekremote features. 2018-03-04 04:01:33 +00:00
packet-per.c ber/per: assert actx to avoid null dereference (found by clang). 2018-03-12 07:17:01 +00:00
packet-per.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pfcp.c [PFCP] Fixed FAR ID, QER ID and URR ID Allocation Type String appended to the Tree in UI 2018-03-13 21:51:31 +00:00
packet-pflog.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-pgm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pgsql.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pim.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pingpongprotocol.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pkcs1.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pkcs1.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pkcs12.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pkcs12.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pkinit.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pkinit.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pkix1explicit.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pkix1explicit.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pkix1implicit.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pkix1implicit.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pkixac.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pkixac.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pkixproxy.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pkixproxy.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pkixqualified.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pkixqualified.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pkixtsp.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pkixtsp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pktap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pktc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pktc.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pktgen.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pmproxy.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pnrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pop.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-portmap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-portmap.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ppcap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ppi-antenna.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ppi-geolocation-common.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ppi-geolocation-common.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ppi-gps.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ppi-sensor.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ppi-vector.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ppi.c spdx: convert files with multiple licenses. 2018-03-09 12:13:23 +00:00
packet-ppp.c Fix a comment. 2018-03-24 03:33:50 +00:00
packet-ppp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pppoe.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pptp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pres.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-pres.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-protobuf.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-protobuf.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-prp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ptp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ptp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ptpip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ptpip.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pulse.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pvfs2.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pw-atm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pw-atm.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pw-cesopsn.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pw-common.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pw-common.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pw-eth.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pw-fr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pw-hdlc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pw-oam.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-pw-satop.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-q708.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-q708.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-q931.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-q931.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-q932-ros.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-q932.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-q932.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-q933.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-q2931.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-qllc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-qnet6.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-qsig.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-qsig.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-quake.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-quake2.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-quake3.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-quakeworld.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-quic.c QUIC: fully fix random access decryption, improve error messages 2018-03-21 16:57:31 +00:00
packet-radius.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-radius.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-radius_packetcable.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-raknet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-raknet.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ranap.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-ranap.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-raw.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rdm.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-rdm.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rdp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rdt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rdt.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-redback.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-redbackli.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-reload-framing.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-reload.c Epan+Qt: Invalidate cached column strings. 2018-03-15 12:19:23 +00:00
packet-reload.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-retix-bpdu.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rfc2190.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rfid-felica.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rfid-mifare.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rfid-pn532-hci.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-rfid-pn532.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rftap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rgmp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-riemann.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ripng.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rlc-lte.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rlc-lte.h Tidy up LTE mac and RLC headers - trivial things seen while adding NR versions 2018-03-16 18:04:42 +00:00
packet-rlc-nr.c RLC-NR: initial dissector submission based on v15.0.0 2018-03-16 11:06:55 +00:00
packet-rlc-nr.h RLC-NR: initial dissector submission based on v15.0.0 2018-03-16 11:06:55 +00:00
packet-rlm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rlogin.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rmcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rmi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rmi.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rmp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rmt-alc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rmt-common.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rmt-fec.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rmt-lct.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rmt-norm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rnsap.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-rohc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rohc.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-roofnet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ros.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-ros.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-rpc.c Get rid of more new_ prefixes for statistics functions and types. 2018-02-19 00:12:51 +00:00
packet-rpc.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rpcap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rpcrdma.c RPC-over-RDMA: add reassembly for reply, read and write chunks 2018-03-24 07:09:59 +00:00
packet-rpcrdma.h RPC-over-RDMA: add reassembly for reply, read and write chunks 2018-03-24 07:09:59 +00:00
packet-rpki-rtr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rpl.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rquota.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rquota.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rrc.c rrc: remove unused function. 2018-02-28 12:03:36 +00:00
packet-rrc.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-rrlp.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-rsh.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rsip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rsl.c packet-rsl: Add RLL UNITDATA INDICATION 2018-02-22 06:23:24 +00:00
packet-rstat.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rsvd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rsvp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rsvp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rsync.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rtacser.c Fix the "pointer to function that generates a label" values. 2018-02-13 18:06:11 +00:00
packet-rtcdc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rtcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rtcp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rtitcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rtls.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rtmpt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rtnet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rtp-events.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rtp-events.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rtp-midi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rtp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rtp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rtpproxy.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rtps.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-rtps.h dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-rtse.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-rtse.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-rtsp.c RTSP: Fixed missing space in column info between multiple pipelined messages 2018-03-04 11:35:34 +00:00
packet-rtsp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rua.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-rudp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rwall.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rwall.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rx.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-rx.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-s1ap.c S1AP: fix filtering on cell-ID 2018-03-19 14:37:04 +00:00
packet-s1ap.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-s7comm.c S7comm: fix range check to prevent infinite loop when upper bound is 255 2018-02-18 02:21:24 +00:00
packet-s7comm.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-s7comm_szl_ids.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-s7comm_szl_ids.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-s5066dts.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-s5066sis.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-s5066sis.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sabp.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-sadmind.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sametime.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sasp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sbc-ap.c replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
packet-sbc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sbus.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sccp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sccp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sccpmg.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scop.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scriptingservice.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scsi-mmc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scsi-mmc.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scsi-osd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scsi-osd.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scsi-sbc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scsi-sbc.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scsi-smc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scsi-smc.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scsi-ssc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scsi-ssc.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scsi.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scsi.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-scte35.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sctp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sctp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sdh.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sdlc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sdp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sdp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sebek.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-selfm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sercosiii.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-ses.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ses.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sflow.c tfs: Add high_normal and low_normal 2018-03-11 02:42:41 +00:00
packet-sflow.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sgsap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-shim6.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sigcomp.c SIGCOMP: Disable UDVM dissection and decompression. 2018-02-22 19:51:11 +00:00
packet-simple.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-simulcrypt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sip.c SIP: Add a filter for icid-value. 2018-03-09 11:33:03 +00:00
packet-sip.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sipfrag.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sita.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-skinny.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-skinny.c.in dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-skinny.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-skinny.h.in dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-skype.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-slimp3.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sll.c Don't crash for ERSPAN packets in Linux cooked captures. 2018-03-22 21:16:40 +00:00
packet-sll.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-slowprotocols.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-slsk.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smb-browse.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smb-browse.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smb-common.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smb-common.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smb-direct.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smb-logon.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smb-mailslot.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smb-mailslot.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smb-pipe.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smb-pipe.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smb-sidsnooping.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smb-sidsnooping.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smb.c SMB1/2: Update some FileFS fields with new flags 2018-03-07 06:06:47 +00:00
packet-smb.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smb2.c SMB1/2: Update some FileFS fields with new flags 2018-03-07 06:06:47 +00:00
packet-smb2.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smcr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sml.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smp.c Fix the "pointer to function that generates a label" values. 2018-02-13 18:06:11 +00:00
packet-smpp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smpp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smrse.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-smrse.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-smtp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sna.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-snaeth.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sndcp-xid.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sndcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-snmp.c snmp: add missing initializers in deep copies. 2018-02-20 11:24:37 +00:00
packet-snmp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-snort.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-socketcan.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-socketcan.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-socks.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-solaredge.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-soupbintcp.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-spdy.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-spice.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-spice.h
packet-spnego.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-spp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-spray.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-spray.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sprt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sprt.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-srp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-srvloc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sscf-nni.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sscop.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sscop.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ssh.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ssl-utils.c TLS: allow cipher information to be retrieved 2018-03-21 18:12:43 +00:00
packet-ssl-utils.h TLS: allow cipher information to be retrieved 2018-03-21 18:12:43 +00:00
packet-ssl.c TLS: allow cipher information to be retrieved 2018-03-21 18:12:43 +00:00
packet-ssl.h TLS: allow cipher information to be retrieved 2018-03-21 18:12:43 +00:00
packet-sstp.c Hand off to the PPC-in-HDLC-like-framing dissector. 2018-03-24 03:29:05 +00:00
packet-stanag4607.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-starteam.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-stat-notify.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-stat-notify.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-stat.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-stat.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-steam-ihs-discovery.c More licenses converted to SPDX. 2018-03-07 13:35:49 +00:00
packet-stt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-stun.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sua.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sv.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-sv.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-swipe.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-symantec.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sync.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-synergy.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-synphasor.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-sysdig-event.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-sysex.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-syslog.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-t30.c Don't handle various "command to send" values in the default case. 2018-03-01 01:53:12 +00:00
packet-t30.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-t38.c t38: allocate memory in pinfo pool scope. 2018-02-28 15:55:05 +00:00
packet-t38.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-t124.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-t124.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-t125.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-tacacs.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tacacs.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tali.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tango.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tapa.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tcap.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-tcap.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-tcp.c tcp: preserve data source if a PDU uses it 2018-03-21 10:35:20 +00:00
packet-tcp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tcpros.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tdmoe.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tdmop.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tds.c TDS: Improve dissection of TDS5 tokenized requests. 2018-03-13 09:12:47 +00:00
packet-teamspeak2.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-teimanagement.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-teklink.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-telkonet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-telnet.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-teredo.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tetra.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-tetra.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-text-media.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tfp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tftp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tftp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-thread.c packet-thread: fix cast-align warning 2018-02-20 01:01:48 +00:00
packet-thrift.c thrift: Fix typo in dissector table description 2018-03-14 13:05:54 +00:00
packet-thrift.h replace SPDX identifier GPL-2.0+ with GPL-2.0-or-later. 2018-02-08 14:57:36 +00:00
packet-tibia.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-time.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tipc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tivoconnect.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tn3270.c Get rid of unused information. 2018-03-06 23:17:55 +00:00
packet-tn3270.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tn5250.c Eliminate unused structure members and an unused list. 2018-03-07 01:09:15 +00:00
packet-tn5250.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tnef.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tns.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tpkt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tpkt.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tpncp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tr.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-trill.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-trmac.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tsp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tte-pcf.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tte.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tte.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-turbocell.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-turnchannel.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-tuxedo.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-twamp.c TWAMP: Reassemble only the Server-Greeting message 2018-02-22 20:37:52 +00:00
packet-tzsp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-u3v.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ua.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ua.h dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-ua3g.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-uasip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-uaudp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-uaudp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ubertooth.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ubertooth.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ucp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-udld.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-udp-nm.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-udp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-udp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-uds.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-udt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-uftp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-uftp4.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-uhd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ulp.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-uma.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-umts_fp.c FP: Fix U-RNTI issue in E-DCH 2018-02-22 05:02:22 +00:00
packet-umts_fp.h NBAP: avoid linking a DCH-ID to itself 2018-03-05 01:55:03 +00:00
packet-umts_mac.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-umts_mac.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-umts_rlc.c RLC: Fix duplication check after sqn reset 2018-03-02 06:24:17 +00:00
packet-umts_rlc.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-usb-audio.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-usb-ccid.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-usb-com.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-usb-dfu.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-usb-hid.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-usb-hid.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-usb-hub.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-usb-i1d3.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-usb-masstorage.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-usb-video.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-usb.c Qt/USB: Allow USB src/dst addresses to be selected for columns 2018-02-27 09:09:35 +00:00
packet-usb.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-usbip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-usbip.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-user_encap.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-userlog.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-uts.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-v5dl.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-v5ef.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-v5ua.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-v52.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-v120.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-v150fw.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vcdu.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vicp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vines.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vlan.c VLAN: define a recursion depth limit 2018-03-06 07:20:55 +00:00
packet-vmlab.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vnc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vntag.c Reenable ieee 802.3 encapsulation and small cleanups/updates 2018-02-22 10:04:41 +00:00
packet-vp8.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vrrp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vrt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vsip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vsock.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vssmonitoring.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vtp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vuze-dht.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vxi11.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vxlan.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-vxlan.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wai.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wap.c clean up tvb_get_guintvar() a bit more 2018-03-04 07:47:09 +00:00
packet-wap.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wassp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-waveagent.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wbxml.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wccp.c WCCP : fix mask assignment 2018-03-20 13:40:45 +00:00
packet-wccp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-websocket.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wfleet-hdlc.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-who.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-whois.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wifi-display.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wifi-dpp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wifi-p2p.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-windows-common.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-windows-common.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-winsrepl.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wisun.c tfs: Add high_normal and low_normal 2018-03-11 02:42:41 +00:00
packet-wlancertextn.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-wlancertextn.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wlccp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wol.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wow.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wps.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wps.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wreth.c dissectors: more SPDX license convertions. 2018-03-07 17:18:47 +00:00
packet-wsmp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wsp.c packet-wsp: fixed incorrect invalid header handling 2018-03-21 09:14:59 +00:00
packet-wsp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wtls.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wtls.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wtp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-wtp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-x2ap.c X2AP: include packet-x2ap.h 2018-03-20 10:48:25 +00:00
packet-x2ap.h F1AP: initial dissector submission based on v15.0.0 2018-03-16 19:10:25 +00:00
packet-x11-keysymdef.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-x11.c Remove popcount in favor of ws_count_ones. 2018-03-13 17:18:01 +00:00
packet-x11.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-x25.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-x29.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-x509af.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-x509af.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-x509ce.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-x509ce.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-x509if.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-x509if.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-x509sat.c ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-x509sat.h ASN.1: update auto generated dissectors 2018-02-18 17:47:40 +00:00
packet-xcsl.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xdmcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xip-serval.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xip.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmcp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xml.c [XML] Add application/rs-metadata+xml 2018-02-27 11:34:04 +00:00
packet-xml.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmpp-conference.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmpp-conference.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmpp-core.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmpp-core.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmpp-gtalk.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmpp-gtalk.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmpp-jingle.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmpp-jingle.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmpp-other.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmpp-other.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmpp-utils.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmpp-utils.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmpp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xmpp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xot.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xra.c More licenses converted to SPDX. 2018-03-07 13:35:49 +00:00
packet-xtp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-xyplex.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-yami.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-yhoo.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ymsg.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ypbind.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ypbind.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-yppasswd.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-yppasswd.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ypserv.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ypserv.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ypxfr.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ypxfr.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-zbee-aps.c ZigBee TP2 buffer test request malformed packet 2018-03-01 11:22:45 +00:00
packet-zbee-aps.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-zbee-nwk-gp.c Add support for ZigBee ZCL manufacturer specific attributes and commands. 2018-03-14 05:37:00 +00:00
packet-zbee-nwk.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-zbee-nwk.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-zbee-security.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-zbee-security.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-zbee-zcl-closures.c Register the ZigBee ZCL cluster with a manufacturer specific code. 2018-03-14 06:16:18 +00:00
packet-zbee-zcl-general.c Register the ZigBee ZCL cluster with a manufacturer specific code. 2018-03-14 06:16:18 +00:00
packet-zbee-zcl-ha.c Register the ZigBee ZCL cluster with a manufacturer specific code. 2018-03-14 06:16:18 +00:00
packet-zbee-zcl-hvac.c Register the ZigBee ZCL cluster with a manufacturer specific code. 2018-03-14 06:16:18 +00:00
packet-zbee-zcl-lighting.c Update and extend the ZigBee ZCL color control cluster. 2018-03-22 06:21:52 +00:00
packet-zbee-zcl-meas-sensing.c ZigBee ZCL Occupancy Sensing: remove unused defines and value_string 2018-03-22 08:48:34 +00:00
packet-zbee-zcl-misc.c Register the ZigBee ZCL cluster with a manufacturer specific code. 2018-03-14 06:16:18 +00:00
packet-zbee-zcl-sas.c Register the ZigBee ZCL cluster with a manufacturer specific code. 2018-03-14 06:16:18 +00:00
packet-zbee-zcl-se.c Register the ZigBee ZCL cluster with a manufacturer specific code. 2018-03-14 06:16:18 +00:00
packet-zbee-zcl.c Register the ZigBee ZCL cluster with a manufacturer specific code. 2018-03-14 06:16:18 +00:00
packet-zbee-zcl.h Export ZigBee ZCL functions in the libwireshark.dll. 2018-03-14 06:16:59 +00:00
packet-zbee-zdp-binding.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-zbee-zdp-discovery.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-zbee-zdp-management.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-zbee-zdp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-zbee-zdp.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-zbee.h Add support for ZigBee ZCL manufacturer specific attributes and commands. 2018-03-14 05:37:00 +00:00
packet-zebra.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-zep.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ziop.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-ziop.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-zrtp.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
packet-zvt.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
read_keytab_file.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
snort-config.c dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
snort-config.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
usb.c [Automatic update for 2018-03-04] 2018-03-04 08:18:31 +00:00
x11-declarations.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
x11-enum.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
x11-extension-errors.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
x11-extension-implementation.h Remove popcount in favor of ws_count_ones. 2018-03-13 17:18:01 +00:00
x11-fields More licenses converted to SPDX. 2018-03-07 13:35:49 +00:00
x11-glx-render-enum.h Remove popcount in favor of ws_count_ones. 2018-03-13 17:18:01 +00:00
x11-keysym.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00
x11-register-info.h dissectors: use SPDX identifiers. 2018-02-12 16:49:58 +00:00

README.X11

The X11 dissector generator is no longer run automatically.

To run the dissector generator, you will need perl 5.10 and the XML::Twig
module from CPAN. You will also need 'git' to retrieve the lastest protocol
descriptions.

Once you have those, you also need the XML protocol descriptions. In the
epan/dissectors directory, run the following commands:
 git clone git://anongit.freedesktop.org/xcb/proto xcbproto
 git clone git://anongit.freedesktop.org/git/mesa/mesa

As of this writing, mesa will provide:
 src/mapi/glapi/gen/gl_API.xml
and xcbproto provides:
 bigreq.xml
 composite.xml
 damage.xml
 dpms.xml
 dri2.xml
 ge.xml
 glx.xml
 randr.xml
 record.xml
 render.xml
 res.xml
 screensaver.xml
 shape.xml
 shm.xml
 sync.xml
 xc_misc.xml
 xevie.xml
 xf86dri.xml
 xf86vidmode.xml
 xfixes.xml
 xinerama.xml
 xinput.xml
 xkb.xml
 xprint.xml
 xproto.xml (ignored)
 xselinux.xml
 xtest.xml
 xv.xml
 xvmc.xml
  
Or, if you have already cloned those repositories, "git pull" each one to bring
it up to date. Please be aware that the Mesa repository is rather large; it is
slightly more than 200MB as of this writing.

Run the following:
 make x11-dissector

This will automatically run process-x11-fields.pl (for the core protocol
definitions), and then it will run process-x11-xcb.pl to process the XML
descriptions from XCB and Mesa to generate the extension dissectors.

Once this is complete, compile wireshark as usual.