summaryrefslogtreecommitdiffstats
path: root/include/dnsjit/core/object
diff options
context:
space:
mode:
Diffstat (limited to 'include/dnsjit/core/object')
-rw-r--r--include/dnsjit/core/object/dns.c8
-rw-r--r--include/dnsjit/core/object/dns.h2
-rw-r--r--include/dnsjit/core/object/dns.hh4
-rw-r--r--include/dnsjit/core/object/dns.lua7
-rw-r--r--include/dnsjit/core/object/dns/label.lua2
-rw-r--r--include/dnsjit/core/object/dns/q.lua2
-rw-r--r--include/dnsjit/core/object/dns/rr.lua2
-rw-r--r--include/dnsjit/core/object/ether.c2
-rw-r--r--include/dnsjit/core/object/ether.h2
-rw-r--r--include/dnsjit/core/object/ether.hh2
-rw-r--r--include/dnsjit/core/object/ether.lua2
-rw-r--r--include/dnsjit/core/object/gre.c2
-rw-r--r--include/dnsjit/core/object/gre.h2
-rw-r--r--include/dnsjit/core/object/gre.hh2
-rw-r--r--include/dnsjit/core/object/gre.lua2
-rw-r--r--include/dnsjit/core/object/icmp.c2
-rw-r--r--include/dnsjit/core/object/icmp.h2
-rw-r--r--include/dnsjit/core/object/icmp.hh2
-rw-r--r--include/dnsjit/core/object/icmp.lua2
-rw-r--r--include/dnsjit/core/object/icmp6.c2
-rw-r--r--include/dnsjit/core/object/icmp6.h2
-rw-r--r--include/dnsjit/core/object/icmp6.hh2
-rw-r--r--include/dnsjit/core/object/icmp6.lua2
-rw-r--r--include/dnsjit/core/object/ieee802.c2
-rw-r--r--include/dnsjit/core/object/ieee802.h2
-rw-r--r--include/dnsjit/core/object/ieee802.hh2
-rw-r--r--include/dnsjit/core/object/ieee802.lua2
-rw-r--r--include/dnsjit/core/object/ip.c2
-rw-r--r--include/dnsjit/core/object/ip.h2
-rw-r--r--include/dnsjit/core/object/ip.hh2
-rw-r--r--include/dnsjit/core/object/ip.lua2
-rw-r--r--include/dnsjit/core/object/ip6.c2
-rw-r--r--include/dnsjit/core/object/ip6.h2
-rw-r--r--include/dnsjit/core/object/ip6.hh2
-rw-r--r--include/dnsjit/core/object/ip6.lua2
-rw-r--r--include/dnsjit/core/object/linuxsll.c2
-rw-r--r--include/dnsjit/core/object/linuxsll.h2
-rw-r--r--include/dnsjit/core/object/linuxsll.hh2
-rw-r--r--include/dnsjit/core/object/linuxsll.lua2
-rw-r--r--include/dnsjit/core/object/loop.c2
-rw-r--r--include/dnsjit/core/object/loop.h2
-rw-r--r--include/dnsjit/core/object/loop.hh2
-rw-r--r--include/dnsjit/core/object/loop.lua2
-rw-r--r--include/dnsjit/core/object/null.c2
-rw-r--r--include/dnsjit/core/object/null.h2
-rw-r--r--include/dnsjit/core/object/null.hh2
-rw-r--r--include/dnsjit/core/object/null.lua2
-rw-r--r--include/dnsjit/core/object/payload.c2
-rw-r--r--include/dnsjit/core/object/payload.h2
-rw-r--r--include/dnsjit/core/object/payload.hh2
-rw-r--r--include/dnsjit/core/object/payload.lua2
-rw-r--r--include/dnsjit/core/object/pcap.c2
-rw-r--r--include/dnsjit/core/object/pcap.h2
-rw-r--r--include/dnsjit/core/object/pcap.hh2
-rw-r--r--include/dnsjit/core/object/pcap.lua2
-rw-r--r--include/dnsjit/core/object/tcp.c2
-rw-r--r--include/dnsjit/core/object/tcp.h2
-rw-r--r--include/dnsjit/core/object/tcp.hh2
-rw-r--r--include/dnsjit/core/object/tcp.lua2
-rw-r--r--include/dnsjit/core/object/udp.c2
-rw-r--r--include/dnsjit/core/object/udp.h2
-rw-r--r--include/dnsjit/core/object/udp.hh2
-rw-r--r--include/dnsjit/core/object/udp.lua2
63 files changed, 75 insertions, 64 deletions
diff --git a/include/dnsjit/core/object/dns.c b/include/dnsjit/core/object/dns.c
index 0698286..a4bf309 100644
--- a/include/dnsjit/core/object/dns.c
+++ b/include/dnsjit/core/object/dns.c
@@ -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; \
diff --git a/include/dnsjit/core/object/dns.h b/include/dnsjit/core/object/dns.h
index a641fe5..143ff89 100644
--- a/include/dnsjit/core/object/dns.h
+++ b/include/dnsjit/core/object/dns.h
@@ -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.
diff --git a/include/dnsjit/core/object/dns.hh b/include/dnsjit/core/object/dns.hh
index 5bd091a..b4aefdd 100644
--- a/include/dnsjit/core/object/dns.hh
+++ b/include/dnsjit/core/object/dns.hh
@@ -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);
diff --git a/include/dnsjit/core/object/dns.lua b/include/dnsjit/core/object/dns.lua
index 308c067..632fe95 100644
--- a/include/dnsjit/core/object/dns.lua
+++ b/include/dnsjit/core/object/dns.lua
@@ -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()
diff --git a/include/dnsjit/core/object/dns/label.lua b/include/dnsjit/core/object/dns/label.lua
index f3de584..27bf918 100644
--- a/include/dnsjit/core/object/dns/label.lua
+++ b/include/dnsjit/core/object/dns/label.lua
@@ -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.
diff --git a/include/dnsjit/core/object/dns/q.lua b/include/dnsjit/core/object/dns/q.lua
index c3d6358..2eaa7fa 100644
--- a/include/dnsjit/core/object/dns/q.lua
+++ b/include/dnsjit/core/object/dns/q.lua
@@ -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.
diff --git a/include/dnsjit/core/object/dns/rr.lua b/include/dnsjit/core/object/dns/rr.lua
index 2db2955..967d9f1 100644
--- a/include/dnsjit/core/object/dns/rr.lua
+++ b/include/dnsjit/core/object/dns/rr.lua
@@ -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.
diff --git a/include/dnsjit/core/object/ether.c b/include/dnsjit/core/object/ether.c
index 90fe32f..dc05391 100644
--- a/include/dnsjit/core/object/ether.c
+++ b/include/dnsjit/core/object/ether.c
@@ -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.
diff --git a/include/dnsjit/core/object/ether.h b/include/dnsjit/core/object/ether.h
index 1c8de16..a5de6f7 100644
--- a/include/dnsjit/core/object/ether.h
+++ b/include/dnsjit/core/object/ether.h
@@ -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.
diff --git a/include/dnsjit/core/object/ether.hh b/include/dnsjit/core/object/ether.hh
index 9cd6a75..a3f638e 100644
--- a/include/dnsjit/core/object/ether.hh
+++ b/include/dnsjit/core/object/ether.hh
@@ -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.
diff --git a/include/dnsjit/core/object/ether.lua b/include/dnsjit/core/object/ether.lua
index e36fc29..04de9c2 100644
--- a/include/dnsjit/core/object/ether.lua
+++ b/include/dnsjit/core/object/ether.lua
@@ -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.
diff --git a/include/dnsjit/core/object/gre.c b/include/dnsjit/core/object/gre.c
index 8666888..c359f60 100644
--- a/include/dnsjit/core/object/gre.c
+++ b/include/dnsjit/core/object/gre.c
@@ -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.
diff --git a/include/dnsjit/core/object/gre.h b/include/dnsjit/core/object/gre.h
index 03b1af6..4caa6fa 100644
--- a/include/dnsjit/core/object/gre.h
+++ b/include/dnsjit/core/object/gre.h
@@ -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.
diff --git a/include/dnsjit/core/object/gre.hh b/include/dnsjit/core/object/gre.hh
index 27f7715..c2008a7 100644
--- a/include/dnsjit/core/object/gre.hh
+++ b/include/dnsjit/core/object/gre.hh
@@ -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.
diff --git a/include/dnsjit/core/object/gre.lua b/include/dnsjit/core/object/gre.lua
index 8eba44a..22a73f5 100644
--- a/include/dnsjit/core/object/gre.lua
+++ b/include/dnsjit/core/object/gre.lua
@@ -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.
diff --git a/include/dnsjit/core/object/icmp.c b/include/dnsjit/core/object/icmp.c
index dbe9638..3b9ed38 100644
--- a/include/dnsjit/core/object/icmp.c
+++ b/include/dnsjit/core/object/icmp.c
@@ -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.
diff --git a/include/dnsjit/core/object/icmp.h b/include/dnsjit/core/object/icmp.h
index f3d3512..931c866 100644
--- a/include/dnsjit/core/object/icmp.h
+++ b/include/dnsjit/core/object/icmp.h
@@ -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.
diff --git a/include/dnsjit/core/object/icmp.hh b/include/dnsjit/core/object/icmp.hh
index 50d8d0f..4374a8b 100644
--- a/include/dnsjit/core/object/icmp.hh
+++ b/include/dnsjit/core/object/icmp.hh
@@ -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.
diff --git a/include/dnsjit/core/object/icmp.lua b/include/dnsjit/core/object/icmp.lua
index 38c53b6..d2a29c8 100644
--- a/include/dnsjit/core/object/icmp.lua
+++ b/include/dnsjit/core/object/icmp.lua
@@ -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.
diff --git a/include/dnsjit/core/object/icmp6.c b/include/dnsjit/core/object/icmp6.c
index 830df2d..d312712 100644
--- a/include/dnsjit/core/object/icmp6.c
+++ b/include/dnsjit/core/object/icmp6.c
@@ -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.
diff --git a/include/dnsjit/core/object/icmp6.h b/include/dnsjit/core/object/icmp6.h
index af1c704..fc79f62 100644
--- a/include/dnsjit/core/object/icmp6.h
+++ b/include/dnsjit/core/object/icmp6.h
@@ -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.
diff --git a/include/dnsjit/core/object/icmp6.hh b/include/dnsjit/core/object/icmp6.hh
index e303db7..47967ef 100644
--- a/include/dnsjit/core/object/icmp6.hh
+++ b/include/dnsjit/core/object/icmp6.hh
@@ -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.
diff --git a/include/dnsjit/core/object/icmp6.lua b/include/dnsjit/core/object/icmp6.lua
index 2e15a62..3ec938e 100644
--- a/include/dnsjit/core/object/icmp6.lua
+++ b/include/dnsjit/core/object/icmp6.lua
@@ -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.
diff --git a/include/dnsjit/core/object/ieee802.c b/include/dnsjit/core/object/ieee802.c
index 71ee94f..5cd1bec 100644
--- a/include/dnsjit/core/object/ieee802.c
+++ b/include/dnsjit/core/object/ieee802.c
@@ -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.
diff --git a/include/dnsjit/core/object/ieee802.h b/include/dnsjit/core/object/ieee802.h
index 7fe60fe..84214c8 100644
--- a/include/dnsjit/core/object/ieee802.h
+++ b/include/dnsjit/core/object/ieee802.h
@@ -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.
diff --git a/include/dnsjit/core/object/ieee802.hh b/include/dnsjit/core/object/ieee802.hh
index 95ac1e0..4303efb 100644
--- a/include/dnsjit/core/object/ieee802.hh
+++ b/include/dnsjit/core/object/ieee802.hh
@@ -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.
diff --git a/include/dnsjit/core/object/ieee802.lua b/include/dnsjit/core/object/ieee802.lua
index 1460419..5d75a70 100644
--- a/include/dnsjit/core/object/ieee802.lua
+++ b/include/dnsjit/core/object/ieee802.lua
@@ -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.
diff --git a/include/dnsjit/core/object/ip.c b/include/dnsjit/core/object/ip.c
index 126c969..91a6d42 100644
--- a/include/dnsjit/core/object/ip.c
+++ b/include/dnsjit/core/object/ip.c
@@ -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.
diff --git a/include/dnsjit/core/object/ip.h b/include/dnsjit/core/object/ip.h
index 6619a0b..cc79fb0 100644
--- a/include/dnsjit/core/object/ip.h
+++ b/include/dnsjit/core/object/ip.h
@@ -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.
diff --git a/include/dnsjit/core/object/ip.hh b/include/dnsjit/core/object/ip.hh
index 341a40d..0f92747 100644
--- a/include/dnsjit/core/object/ip.hh
+++ b/include/dnsjit/core/object/ip.hh
@@ -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.
diff --git a/include/dnsjit/core/object/ip.lua b/include/dnsjit/core/object/ip.lua
index 1191b5f..84e65b6 100644
--- a/include/dnsjit/core/object/ip.lua
+++ b/include/dnsjit/core/object/ip.lua
@@ -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.
diff --git a/include/dnsjit/core/object/ip6.c b/include/dnsjit/core/object/ip6.c
index 6051d08..4d639b4 100644
--- a/include/dnsjit/core/object/ip6.c
+++ b/include/dnsjit/core/object/ip6.c
@@ -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.
diff --git a/include/dnsjit/core/object/ip6.h b/include/dnsjit/core/object/ip6.h
index f6f021b..831513b 100644
--- a/include/dnsjit/core/object/ip6.h
+++ b/include/dnsjit/core/object/ip6.h
@@ -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.
diff --git a/include/dnsjit/core/object/ip6.hh b/include/dnsjit/core/object/ip6.hh
index a713ab3..6ea20cc 100644
--- a/include/dnsjit/core/object/ip6.hh
+++ b/include/dnsjit/core/object/ip6.hh
@@ -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.
diff --git a/include/dnsjit/core/object/ip6.lua b/include/dnsjit/core/object/ip6.lua
index 1b9ce7b..cdadd7c 100644
--- a/include/dnsjit/core/object/ip6.lua
+++ b/include/dnsjit/core/object/ip6.lua
@@ -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.
diff --git a/include/dnsjit/core/object/linuxsll.c b/include/dnsjit/core/object/linuxsll.c
index 42cb9c1..5f8898e 100644
--- a/include/dnsjit/core/object/linuxsll.c
+++ b/include/dnsjit/core/object/linuxsll.c
@@ -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.
diff --git a/include/dnsjit/core/object/linuxsll.h b/include/dnsjit/core/object/linuxsll.h
index 9bd0ad3..e6c36a9 100644
--- a/include/dnsjit/core/object/linuxsll.h
+++ b/include/dnsjit/core/object/linuxsll.h
@@ -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.
diff --git a/include/dnsjit/core/object/linuxsll.hh b/include/dnsjit/core/object/linuxsll.hh
index 31a6d40..093f430 100644
--- a/include/dnsjit/core/object/linuxsll.hh
+++ b/include/dnsjit/core/object/linuxsll.hh
@@ -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.
diff --git a/include/dnsjit/core/object/linuxsll.lua b/include/dnsjit/core/object/linuxsll.lua
index 2db8c8c..29f59db 100644
--- a/include/dnsjit/core/object/linuxsll.lua
+++ b/include/dnsjit/core/object/linuxsll.lua
@@ -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.
diff --git a/include/dnsjit/core/object/loop.c b/include/dnsjit/core/object/loop.c
index 4491bc6..0c9acf8 100644
--- a/include/dnsjit/core/object/loop.c
+++ b/include/dnsjit/core/object/loop.c
@@ -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.
diff --git a/include/dnsjit/core/object/loop.h b/include/dnsjit/core/object/loop.h
index 9ee2876..1c91b18 100644
--- a/include/dnsjit/core/object/loop.h
+++ b/include/dnsjit/core/object/loop.h
@@ -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.
diff --git a/include/dnsjit/core/object/loop.hh b/include/dnsjit/core/object/loop.hh
index e7ae4da..acaf1c1 100644
--- a/include/dnsjit/core/object/loop.hh
+++ b/include/dnsjit/core/object/loop.hh
@@ -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.
diff --git a/include/dnsjit/core/object/loop.lua b/include/dnsjit/core/object/loop.lua
index a282d17..5fbec27 100644
--- a/include/dnsjit/core/object/loop.lua
+++ b/include/dnsjit/core/object/loop.lua
@@ -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.
diff --git a/include/dnsjit/core/object/null.c b/include/dnsjit/core/object/null.c
index c3c5061..d9fe8b9 100644
--- a/include/dnsjit/core/object/null.c
+++ b/include/dnsjit/core/object/null.c
@@ -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.
diff --git a/include/dnsjit/core/object/null.h b/include/dnsjit/core/object/null.h
index c995cdf..e173f0b 100644
--- a/include/dnsjit/core/object/null.h
+++ b/include/dnsjit/core/object/null.h
@@ -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.
diff --git a/include/dnsjit/core/object/null.hh b/include/dnsjit/core/object/null.hh
index 138600f..d934185 100644
--- a/include/dnsjit/core/object/null.hh
+++ b/include/dnsjit/core/object/null.hh
@@ -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.
diff --git a/include/dnsjit/core/object/null.lua b/include/dnsjit/core/object/null.lua
index ef39ebb..3d4f456 100644
--- a/include/dnsjit/core/object/null.lua
+++ b/include/dnsjit/core/object/null.lua
@@ -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.
diff --git a/include/dnsjit/core/object/payload.c b/include/dnsjit/core/object/payload.c
index 5d18124..efc5726 100644
--- a/include/dnsjit/core/object/payload.c
+++ b/include/dnsjit/core/object/payload.c
@@ -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.
diff --git a/include/dnsjit/core/object/payload.h b/include/dnsjit/core/object/payload.h
index 3f6967c..dc3ae6a 100644
--- a/include/dnsjit/core/object/payload.h
+++ b/include/dnsjit/core/object/payload.h
@@ -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.
diff --git a/include/dnsjit/core/object/payload.hh b/include/dnsjit/core/object/payload.hh
index 618fffe..573fd45 100644
--- a/include/dnsjit/core/object/payload.hh
+++ b/include/dnsjit/core/object/payload.hh
@@ -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.
diff --git a/include/dnsjit/core/object/payload.lua b/include/dnsjit/core/object/payload.lua
index 457b00c..cb80b13 100644
--- a/include/dnsjit/core/object/payload.lua
+++ b/include/dnsjit/core/object/payload.lua
@@ -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.
diff --git a/include/dnsjit/core/object/pcap.c b/include/dnsjit/core/object/pcap.c
index a9a79f9..fe9beca 100644
--- a/include/dnsjit/core/object/pcap.c
+++ b/include/dnsjit/core/object/pcap.c
@@ -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.
diff --git a/include/dnsjit/core/object/pcap.h b/include/dnsjit/core/object/pcap.h
index a668486..e88102e 100644
--- a/include/dnsjit/core/object/pcap.h
+++ b/include/dnsjit/core/object/pcap.h
@@ -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.
diff --git a/include/dnsjit/core/object/pcap.hh b/include/dnsjit/core/object/pcap.hh
index 8f3a933..09a50df 100644
--- a/include/dnsjit/core/object/pcap.hh
+++ b/include/dnsjit/core/object/pcap.hh
@@ -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.
diff --git a/include/dnsjit/core/object/pcap.lua b/include/dnsjit/core/object/pcap.lua
index 0b88a75..0b0e1aa 100644
--- a/include/dnsjit/core/object/pcap.lua
+++ b/include/dnsjit/core/object/pcap.lua
@@ -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.
diff --git a/include/dnsjit/core/object/tcp.c b/include/dnsjit/core/object/tcp.c
index 0eb35d1..f46bfe6 100644
--- a/include/dnsjit/core/object/tcp.c
+++ b/include/dnsjit/core/object/tcp.c
@@ -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.
diff --git a/include/dnsjit/core/object/tcp.h b/include/dnsjit/core/object/tcp.h
index f2d709b..41fddcc 100644
--- a/include/dnsjit/core/object/tcp.h
+++ b/include/dnsjit/core/object/tcp.h
@@ -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.
diff --git a/include/dnsjit/core/object/tcp.hh b/include/dnsjit/core/object/tcp.hh
index c6c6ef2..869ab9a 100644
--- a/include/dnsjit/core/object/tcp.hh
+++ b/include/dnsjit/core/object/tcp.hh
@@ -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.
diff --git a/include/dnsjit/core/object/tcp.lua b/include/dnsjit/core/object/tcp.lua
index e2d5604..1856098 100644
--- a/include/dnsjit/core/object/tcp.lua
+++ b/include/dnsjit/core/object/tcp.lua
@@ -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.
diff --git a/include/dnsjit/core/object/udp.c b/include/dnsjit/core/object/udp.c
index a830079..c58fc5d 100644
--- a/include/dnsjit/core/object/udp.c
+++ b/include/dnsjit/core/object/udp.c
@@ -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.
diff --git a/include/dnsjit/core/object/udp.h b/include/dnsjit/core/object/udp.h
index 012630d..00c95e0 100644
--- a/include/dnsjit/core/object/udp.h
+++ b/include/dnsjit/core/object/udp.h
@@ -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.
diff --git a/include/dnsjit/core/object/udp.hh b/include/dnsjit/core/object/udp.hh
index 0940004..7dbe20f 100644
--- a/include/dnsjit/core/object/udp.hh
+++ b/include/dnsjit/core/object/udp.hh
@@ -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.
diff --git a/include/dnsjit/core/object/udp.lua b/include/dnsjit/core/object/udp.lua
index 10f4a72..0e0393f 100644
--- a/include/dnsjit/core/object/udp.lua
+++ b/include/dnsjit/core/object/udp.lua
@@ -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.