Browse Source

smartdns: bump copyright to 2024

Nick Peng 1 year ago
parent
commit
acf49e4f43
100 changed files with 100 additions and 100 deletions
  1. 1 1
      Makefile
  2. 1 1
      etc/init.d/smartdns
  3. 1 1
      package/build-pkg.sh
  4. 1 1
      package/debian/DEBIAN/copyright
  5. 1 1
      package/debian/make.sh
  6. 1 1
      package/linux/install
  7. 1 1
      package/luci-compat/control/postinst
  8. 1 1
      package/luci-compat/control/prerm
  9. 1 1
      package/luci-compat/files/etc/uci-defaults/50_luci-smartdns
  10. 1 1
      package/luci-compat/files/luci/controller/smartdns.lua
  11. 1 1
      package/luci-compat/files/luci/model/cbi/smartdns/smartdns.lua
  12. 1 1
      package/luci-compat/files/luci/model/cbi/smartdns/upstream.lua
  13. 1 1
      package/luci-compat/files/luci/model/smartdns.lua
  14. 1 1
      package/luci-compat/make.sh
  15. 1 1
      package/luci-lite/control/postinst
  16. 1 1
      package/luci-lite/control/prerm
  17. 1 1
      package/luci-lite/files/root/www/luci-static/resources/view/smartdns-lite/smartdns-lite.js
  18. 1 1
      package/luci-lite/make.sh
  19. 1 1
      package/luci/control/postinst
  20. 1 1
      package/luci/control/prerm
  21. 1 1
      package/luci/files/root/www/luci-static/resources/view/smartdns/smartdns.js
  22. 1 1
      package/luci/make.sh
  23. 1 1
      package/openwrt/Makefile
  24. 1 1
      package/openwrt/control/postinst
  25. 1 1
      package/openwrt/control/prerm
  26. 1 1
      package/openwrt/files/etc/init.d/smartdns
  27. 1 1
      package/openwrt/make.sh
  28. 1 1
      package/optware/S50smartdns
  29. 1 1
      package/optware/control/postinst
  30. 1 1
      package/optware/control/prerm
  31. 1 1
      package/optware/make.sh
  32. 1 1
      src/Makefile
  33. 1 1
      src/dns.c
  34. 1 1
      src/dns.h
  35. 1 1
      src/dns_cache.c
  36. 1 1
      src/dns_cache.h
  37. 1 1
      src/dns_client.c
  38. 1 1
      src/dns_client.h
  39. 1 1
      src/dns_conf.c
  40. 1 1
      src/dns_conf.h
  41. 1 1
      src/dns_server.c
  42. 1 1
      src/dns_server.h
  43. 1 1
      src/fast_ping.c
  44. 1 1
      src/fast_ping.h
  45. 1 1
      src/http_parse.c
  46. 1 1
      src/http_parse.h
  47. 1 1
      src/include/atomic.h
  48. 1 1
      src/include/bitmap.h
  49. 1 1
      src/include/bitops.h
  50. 1 1
      src/include/conf.h
  51. 1 1
      src/include/findbit.h
  52. 1 1
      src/include/gcc_builtin.h
  53. 1 1
      src/include/hash.h
  54. 1 1
      src/include/hashtable.h
  55. 1 1
      src/include/idna.h
  56. 1 1
      src/include/jhash.h
  57. 1 1
      src/include/list.h
  58. 1 1
      src/include/rbtree.h
  59. 1 1
      src/include/stringutil.h
  60. 1 1
      src/include/timer_wheel.h
  61. 1 1
      src/lib/bitops.c
  62. 1 1
      src/lib/conf.c
  63. 1 1
      src/lib/idna.c
  64. 1 1
      src/lib/nftset.c
  65. 1 1
      src/lib/rbtree.c
  66. 1 1
      src/lib/stringutil.c
  67. 1 1
      src/lib/timer_wheel.c
  68. 1 1
      src/proxy.c
  69. 1 1
      src/proxy.h
  70. 1 1
      src/smartdns.c
  71. 1 1
      src/smartdns.h
  72. 1 1
      src/timer.c
  73. 1 1
      src/timer.h
  74. 1 1
      src/tlog.c
  75. 1 1
      src/tlog.h
  76. 1 1
      src/util.c
  77. 1 1
      src/util.h
  78. 1 1
      test/Makefile
  79. 1 1
      test/cases/test-address.cc
  80. 1 1
      test/cases/test-bind.cc
  81. 1 1
      test/cases/test-bootstrap.cc
  82. 1 1
      test/cases/test-cache.cc
  83. 1 1
      test/cases/test-client-rule.cc
  84. 1 1
      test/cases/test-cname.cc
  85. 1 1
      test/cases/test-ddns.cc
  86. 1 1
      test/cases/test-discard-block-ip.cc
  87. 1 1
      test/cases/test-dns64.cc
  88. 1 1
      test/cases/test-domain-rule.cc
  89. 1 1
      test/cases/test-domain-set.cc
  90. 1 1
      test/cases/test-dualstack.cc
  91. 1 1
      test/cases/test-edns.cc
  92. 1 1
      test/cases/test-group.cc
  93. 1 1
      test/cases/test-hosts.cc
  94. 1 1
      test/cases/test-idna.cc
  95. 1 1
      test/cases/test-ip-alias.cc
  96. 1 1
      test/cases/test-ip-rule.cc
  97. 1 1
      test/cases/test-mdns.cc
  98. 1 1
      test/cases/test-mock-server.cc
  99. 1 1
      test/cases/test-nameserver.cc
  100. 1 1
      test/cases/test-perf.cc

+ 1 - 1
Makefile

@@ -1,4 +1,4 @@
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
etc/init.d/smartdns

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/build-pkg.sh

@@ -1,5 +1,5 @@
 #!/bin/sh
-# Copyright (C) 2018-2019 Nick Peng ([email protected])
+# Copyright (C) 2018-2024 Nick Peng ([email protected])
 
 CURR_DIR=$(cd $(dirname $0);pwd)
 VER="`date +"1.%Y.%m.%d-%H%M"`"

+ 1 - 1
package/debian/DEBIAN/copyright

@@ -3,5 +3,5 @@ Upstream-Name: smartdns
 Source: http://github.com/pymumu/smartdns
 
 Files: *
-Copyright: 2018-2019 Nick peng
+Copyright: 2018-2024 Nick peng
 License: proprietary

+ 1 - 1
package/debian/make.sh

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/linux/install

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci-compat/control/postinst

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci-compat/control/prerm

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci-compat/files/etc/uci-defaults/50_luci-smartdns

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci-compat/files/luci/controller/smartdns.lua

@@ -1,5 +1,5 @@
 --
--- Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+-- Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 --
 -- smartdns is free software: you can redistribute it and/or modify
 -- it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci-compat/files/luci/model/cbi/smartdns/smartdns.lua

@@ -1,5 +1,5 @@
 --
--- Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+-- Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 --
 -- smartdns is free software: you can redistribute it and/or modify
 -- it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci-compat/files/luci/model/cbi/smartdns/upstream.lua

@@ -1,5 +1,5 @@
 --
--- Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+-- Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 --
 -- smartdns is free software: you can redistribute it and/or modify
 -- it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci-compat/files/luci/model/smartdns.lua

@@ -1,5 +1,5 @@
 --
--- Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+-- Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 --
 -- smartdns is free software: you can redistribute it and/or modify
 -- it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci-compat/make.sh

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci-lite/control/postinst

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci-lite/control/prerm

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci-lite/files/root/www/luci-static/resources/view/smartdns-lite/smartdns-lite.js

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci-lite/make.sh

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci/control/postinst

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci/control/prerm

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci/files/root/www/luci-static/resources/view/smartdns/smartdns.js

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
package/luci/make.sh

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/openwrt/Makefile

@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2018-2023 Nick Peng ([email protected])
+# Copyright (c) 2018-2024 Nick Peng ([email protected])
 # This is free software, licensed under the GNU General Public License v3.
 #
 

+ 1 - 1
package/openwrt/control/postinst

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/openwrt/control/prerm

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/openwrt/files/etc/init.d/smartdns

@@ -1,6 +1,6 @@
 #!/bin/sh /etc/rc.common
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/openwrt/make.sh

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/optware/S50smartdns

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/optware/control/postinst

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/optware/control/prerm

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
package/optware/make.sh

@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
src/Makefile

@@ -1,5 +1,5 @@
 
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
src/dns.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/dns.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/dns_cache.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/dns_cache.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/dns_client.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/dns_client.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/dns_conf.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/dns_conf.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/dns_server.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/dns_server.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/fast_ping.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/fast_ping.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/http_parse.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/http_parse.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/include/atomic.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/include/bitmap.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/include/bitops.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/include/conf.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/include/findbit.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/include/gcc_builtin.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/include/hash.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/include/hashtable.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/include/idna.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/include/jhash.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/include/list.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/include/rbtree.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/include/stringutil.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/include/timer_wheel.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/lib/bitops.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/lib/conf.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/lib/idna.c

@@ -1,7 +1,7 @@
 
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/lib/nftset.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/lib/rbtree.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/lib/stringutil.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/lib/timer_wheel.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/proxy.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/proxy.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/smartdns.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/smartdns.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/timer.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/timer.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/tlog.c

@@ -1,6 +1,6 @@
 /*
  * tinylog
- * Copyright (C) 2018-2023 Nick Peng <[email protected]>
+ * Copyright (C) 2018-2024 Nick Peng <[email protected]>
  * https://github.com/pymumu/tinylog
  */
 #ifndef _GNU_SOURCE

+ 1 - 1
src/tlog.h

@@ -1,6 +1,6 @@
 /*
  * tinylog
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>
  * https://github.com/pymumu/tinylog
  */
 

+ 1 - 1
src/util.c

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
src/util.h

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/Makefile

@@ -1,5 +1,5 @@
 
-# Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+# Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
 #
 # smartdns is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-address.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-bind.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-bootstrap.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-cache.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-client-rule.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-cname.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-ddns.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-discard-block-ip.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-dns64.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-domain-rule.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-domain-set.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-dualstack.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-edns.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-group.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-hosts.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-idna.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-ip-alias.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-ip-rule.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-mdns.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-mock-server.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-nameserver.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

+ 1 - 1
test/cases/test-perf.cc

@@ -1,6 +1,6 @@
 /*************************************************************************
  *
- * Copyright (C) 2018-2023 Ruilin Peng (Nick) <[email protected]>.
+ * Copyright (C) 2018-2024 Ruilin Peng (Nick) <[email protected]>.
  *
  * smartdns is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

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