This release contains bug fixes only:
- CVE-2019-8381 memory access in do_checksum() (#538)
- CVE-2019-8376 NULL pointer dereference get_layer4_v6() (#537)
- CVE-2019-8377 NULL pointer dereference get_ipv6_l4proto() (#536)
- Rename Ethereal to Wireshark (#545)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit dc2067d51c
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
30 lines
977 B
Makefile
30 lines
977 B
Makefile
################################################################################
|
|
#
|
|
# tcpreplay
|
|
#
|
|
################################################################################
|
|
|
|
TCPREPLAY_VERSION = 4.3.2
|
|
TCPREPLAY_SITE = https://github.com/appneta/tcpreplay/releases/download/v$(TCPREPLAY_VERSION)
|
|
TCPREPLAY_SOURCE = tcpreplay-$(TCPREPLAY_VERSION).tar.xz
|
|
TCPREPLAY_LICENSE = GPL-3.0
|
|
TCPREPLAY_LICENSE_FILES = docs/LICENSE
|
|
TCPREPLAY_CONF_ENV = \
|
|
ac_cv_path_ac_pt_PCAP_CONFIG="$(STAGING_DIR)/usr/bin/pcap-config"
|
|
TCPREPLAY_CONF_OPTS = --with-libpcap=$(STAGING_DIR)/usr \
|
|
--enable-pcapconfig
|
|
TCPREPLAY_DEPENDENCIES = libpcap
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
TCPREPLAY_CONF_OPTS += --enable-dynamic-link=no
|
|
TCPREPLAY_CONF_ENV += LIBS="`$(STAGING_DIR)/usr/bin/pcap-config --static --libs`"
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_TCPDUMP),y)
|
|
TCPREPLAY_CONF_ENV += ac_cv_path_tcpdump_path=/usr/sbin/tcpdump
|
|
else
|
|
TCPREPLAY_CONF_ENV += ac_cv_path_tcpdump_path=no
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|