Adding upstream version 1.3.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-09 08:34:55 +01:00
parent 1ce56b1dca
commit 62c97c4e0a
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
395 changed files with 7370 additions and 5866 deletions

View file

@ -1,4 +1,4 @@
# Copyright (c) 2018-2022, OARC, Inc.
# Copyright (c) 2018-2023, OARC, Inc.
# All rights reserved.
#
# This file is part of dnsjit.
@ -28,7 +28,8 @@ AM_CFLAGS = -Werror=attributes \
$(SIMD_FLAGS) $(CPUEXT_FLAGS) \
$(PTHREAD_CFLAGS) \
$(luajit_CFLAGS) \
$(liblz4_CFLAGS) $(libzstd_CFLAGS)
$(liblz4_CFLAGS) $(libzstd_CFLAGS) \
$(libpcap_CFLAGS) $(gnutls_CFLAGS)
EXTRA_DIST = gen-manpage.lua gen-compat.lua gen-errno.sh dnsjit.1in
@ -42,7 +43,8 @@ dnsjitincludedir = $(includedir)/dnsjit
nobase_dnsjitinclude_HEADERS = globals.h version.h
lua_hobjects = core/compat.luaho
lua_objects = core.luao lib.luao input.luao filter.luao output.luao
dnsjit_LDADD = $(PTHREAD_LIBS) $(luajit_LIBS) $(liblz4_LIBS) $(libzstd_LIBS)
dnsjit_LDADD = $(PTHREAD_LIBS) $(luajit_LIBS) $(liblz4_LIBS) $(libzstd_LIBS) \
$(libpcap_LIBS) $(gnutls_LIBS)
# C source and headers
dnsjit_SOURCES += core/channel.c core/compat.c core/file.c core/log.c core/object.c core/object/dns.c core/object/ether.c core/object/gre.c core/object/icmp6.c core/object/icmp.c core/object/ieee802.c core/object/ip6.c core/object/ip.c core/object/linuxsll.c core/object/loop.c core/object/null.c core/object/payload.c core/object/pcap.c core/object/tcp.c core/object/udp.c core/producer.c core/receiver.c core/thread.c filter/copy.c filter/ipsplit.c filter/layer.c filter/split.c filter/timing.c input/fpcap.c input/mmpcap.c input/pcap.c input/zpcap.c lib/base64url.c lib/clock.c lib/trie.c output/dnscli.c output/pcap.c output/respdiff.c output/tcpcli.c output/tlscli.c output/udpcli.c

View file

@ -1,7 +1,7 @@
# Makefile.in generated by automake 1.16.1 from Makefile.am.
# Makefile.in generated by automake 1.16.5 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@ -14,7 +14,7 @@
@SET_MAKE@
# Copyright (c) 2018-2022, OARC, Inc.
# Copyright (c) 2018-2023, OARC, Inc.
# All rights reserved.
#
# This file is part of dnsjit.
@ -159,6 +159,7 @@ dist_dnsjit_OBJECTS =
dnsjit_OBJECTS = $(am_dnsjit_OBJECTS) $(dist_dnsjit_OBJECTS)
am__DEPENDENCIES_1 =
dnsjit_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) $(lua_hobjects) \
$(lua_objects)
AM_V_lt = $(am__v_lt_@AM_V@)
@ -280,8 +281,8 @@ am__recursive_targets = \
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
distdir distdir-am
am__extra_recursive_targets = gcov-recursive
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
$(LISP)config.h.in
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \
config.h.in
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
# *not* preserved.
@ -298,8 +299,6 @@ am__define_uniq_tagged_files = \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | $(am__uniquify_input)`
ETAGS = etags
CTAGS = ctags
DIST_SUBDIRS = $(SUBDIRS)
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
$(top_srcdir)/depcomp
@ -343,6 +342,8 @@ CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CPUEXT_FLAGS = @CPUEXT_FLAGS@
CSCOPE = @CSCOPE@
CTAGS = @CTAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
@ -353,6 +354,7 @@ ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
ETAGS = @ETAGS@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GREP = @GREP@
@ -428,6 +430,8 @@ datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
gnutls_CFLAGS = @gnutls_CFLAGS@
gnutls_LIBS = @gnutls_LIBS@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
@ -441,6 +445,8 @@ libdir = @libdir@
libexecdir = @libexecdir@
liblz4_CFLAGS = @liblz4_CFLAGS@
liblz4_LIBS = @liblz4_LIBS@
libpcap_CFLAGS = @libpcap_CFLAGS@
libpcap_LIBS = @libpcap_LIBS@
libzstd_CFLAGS = @libzstd_CFLAGS@
libzstd_LIBS = @libzstd_LIBS@
localedir = @localedir@
@ -474,7 +480,8 @@ AM_CFLAGS = -Werror=attributes \
$(SIMD_FLAGS) $(CPUEXT_FLAGS) \
$(PTHREAD_CFLAGS) \
$(luajit_CFLAGS) \
$(liblz4_CFLAGS) $(libzstd_CFLAGS)
$(liblz4_CFLAGS) $(libzstd_CFLAGS) \
$(libpcap_CFLAGS) $(gnutls_CFLAGS)
EXTRA_DIST = gen-manpage.lua gen-compat.lua gen-errno.sh dnsjit.1in
BUILT_SOURCES = core/compat.hh core/log_errstr.c
@ -585,7 +592,8 @@ lua_objects = core.luao lib.luao input.luao filter.luao output.luao \
output/respdiff.luao output/tcpcli.luao output/tlscli.luao \
output/udpcli.luao
dnsjit_LDADD = $(PTHREAD_LIBS) $(luajit_LIBS) $(liblz4_LIBS) \
$(libzstd_LIBS) $(lua_hobjects) $(lua_objects)
$(libzstd_LIBS) $(libpcap_LIBS) $(gnutls_LIBS) $(lua_hobjects) \
$(lua_objects)
dnsjit_LDFLAGS = -Wl,-E
man1_MANS = dnsjit.1
man3_MANS = dnsjit.core.3 dnsjit.lib.3 dnsjit.input.3 dnsjit.filter.3 \
@ -1130,7 +1138,6 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
distdir: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) distdir-am
@ -1200,7 +1207,8 @@ installdirs-am:
done
install: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-recursive
install-exec: install-exec-recursive
install-exec: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-exec-recursive
install-data: install-data-recursive
uninstall: uninstall-recursive
@ -1407,7 +1415,7 @@ uninstall-am: uninstall-binPROGRAMS uninstall-man \
uninstall-man: uninstall-man1 uninstall-man3
.MAKE: $(am__recursive_targets) all check install install-am \
install-strip
install-exec install-strip
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
am--depfiles check check-am clean clean-binPROGRAMS \

View file

@ -100,9 +100,6 @@
/* Define to 1 if you have the <machine/endian.h> header file. */
#undef HAVE_MACHINE_ENDIAN_H
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define to 1 to support Multimedia Extensions */
#undef HAVE_MMX
@ -118,31 +115,6 @@
/* Define to 1 if you have the <net/ethertypes.h> header file. */
#undef HAVE_NET_ETHERTYPES_H
/* Define to 1 if you have the `pcap_activate' function. */
#undef HAVE_PCAP_ACTIVATE
/* Define to 1 if you have the `pcap_create' function. */
#undef HAVE_PCAP_CREATE
/* Define to 1 if the system has the type `pcap_direction_t'. */
#undef HAVE_PCAP_DIRECTION_T
/* Define to 1 if you have the `pcap_open_offline_with_tstamp_precision'
function. */
#undef HAVE_PCAP_OPEN_OFFLINE_WITH_TSTAMP_PRECISION
/* Define to 1 if you have the `pcap_setdirection' function. */
#undef HAVE_PCAP_SETDIRECTION
/* Define to 1 if you have the `pcap_set_immediate_mode' function. */
#undef HAVE_PCAP_SET_IMMEDIATE_MODE
/* Define to 1 if you have the `pcap_set_tstamp_precision' function. */
#undef HAVE_PCAP_SET_TSTAMP_PRECISION
/* Define to 1 if you have the `pcap_set_tstamp_type' function. */
#undef HAVE_PCAP_SET_TSTAMP_TYPE
/* Define to 1 to support Prefetch Vector Data Into Caches WT1 */
#undef HAVE_PREFETCHWT1
@ -155,9 +127,6 @@
/* Define to 1 to support Digital Random Number Generator */
#undef HAVE_RDRND
/* Define to 1 if you have the `sched_yield' function. */
#undef HAVE_SCHED_YIELD
/* Define to 1 to support Secure Hash Algorithm Extension */
#undef HAVE_SHA
@ -185,6 +154,9 @@
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H
/* Define to 1 if you have the <stdio.h> header file. */
#undef HAVE_STDIO_H
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H
@ -285,10 +257,13 @@
/* The size of `void*', as computed by sizeof. */
#undef SIZEOF_VOIDP
/* Define to 1 if you have the ANSI C header files. */
/* Define to 1 if all of the C90 standard headers exist (not just the ones
required in a freestanding environment). This macro is provided for
backward compatibility; new code need not use it. */
#undef STDC_HEADERS
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. This
macro is obsolete. */
#undef TIME_WITH_SYS_TIME
/* Version number of package */

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.
@ -95,6 +95,12 @@ void core_object_dns_free(core_object_dns_t* self)
free(self);
}
void core_object_dns_reset(core_object_dns_t* self)
{
mlassert_self();
*self = _defaults;
}
#define need8(v, p, l) \
if (l < 1) { \
break; \

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.
@ -112,7 +112,7 @@ core_log_t* core_object_dns_log();
core_object_dns_t* core_object_dns_new();
core_object_dns_t* core_object_dns_copy(const core_object_dns_t* self);
void core_object_dns_free(core_object_dns_t* self);
void core_object_dns_reset(core_object_dns_t* self, const core_object_t* obj);
void core_object_dns_reset(core_object_dns_t* self);
int core_object_dns_parse_header(core_object_dns_t* self);
int core_object_dns_parse_q(core_object_dns_t* self, core_object_dns_q_t* q, core_object_dns_label_t* label, size_t labels);

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.
@ -517,6 +517,11 @@ function Dns:free()
C.core_object_dns_free(self)
end
-- Reset the object readying it for reuse.
function Dns:reset()
C.core_object_dns_reset(self)
end
-- Return the Log object to control logging of this module.
function Dns:log()
return C.core_object_dns_log()

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,4 +1,4 @@
-- Copyright (c) 2018-2022, OARC, Inc.
-- Copyright (c) 2018-2023, OARC, Inc.
-- All rights reserved.
--
-- This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022, OARC, Inc.
* Copyright (c) 2018-2023, OARC, Inc.
* All rights reserved.
*
* This file is part of dnsjit.

Some files were not shown because too many files have changed in this diff Show more