Skip to content

Commit

Permalink
Use bpv6 dissector explicitly.
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianSipos committed Jan 21, 2023
1 parent fb97032 commit 270ca90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/packet-udpcl.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
#include <epan/dissectors/packet-udp.h>
#include <epan/dissectors/packet-dtls.h>
#include <epan/exceptions.h>
#include <epan/wscbor.h>
#include <stdio.h>
#include <inttypes.h>
#include "epan/wscbor.h"
#include "packet-udpcl.h"

#if defined(WIRESHARK_HAS_VERSION_H)
Expand Down Expand Up @@ -559,7 +559,7 @@ static void proto_reg_handoff_udpcl(void) {

handle_cbor = find_dissector("cbor");
handle_dtls = find_dissector_add_dependency(DTLS_DISSECTOR_NAME, proto_udpcl);
handle_bpv6 = find_dissector_add_dependency("bundle", proto_udpcl);
handle_bpv6 = find_dissector_add_dependency("bpv6", proto_udpcl);
handle_bpv7 = find_dissector_add_dependency("bpv7", proto_udpcl);

/* Packaged extensions */
Expand Down

0 comments on commit 270ca90

Please sign in to comment.