diff --git a/CHANGES b/CHANGES index d2bf018..14831f9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,21 @@ +2021-04-06 Jerry Lundström + + Release 1.2.0 + + New stuff: + - Add `-L` to control lingering + - Add option `-r`, reflect UDP back to sender + - Add TCP reflection when using libuv + - Add TLS support `-T` + - Add reflection TLS + - Add "close after first reflect" `-C` + - Add option `-D `: Randomly disconnect on receive based on a percentage + + Bugfixes and tweaks: + - Use `shutdown()` and add callback in EV code + - Fix TCP stats when reflecting + - Fix memory leak in UV TCP receive handler + 2017-02-23 Jerry Lundström Release 1.1.0 - now with `-B`ackends! diff --git a/Makefile.am b/Makefile.am index 2d933e9..865a744 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ # dumdumd - packets sent lightning fast to dev null -# Copyright (c) 2017, OARC, Inc. +# Copyright (c) 2017-2021, OARC, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published diff --git a/README.md b/README.md index 0027121..ede439b 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Jerry Lundström ## Copyright -Copyright (c) 2017, OARC, Inc. +Copyright (c) 2017-2021, OARC, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published diff --git a/autogen.sh b/autogen.sh index b72cd04..b3be99b 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,7 +1,7 @@ #!/bin/sh -e # # dumdumd - packets sent lightning fast to dev null -# Copyright (c) 2017, OARC, Inc. +# Copyright (c) 2017-2021, OARC, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published diff --git a/configure.ac b/configure.ac index 7a2d6c7..5dbf4ba 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ # dumdumd - packets sent lightning fast to dev null -# Copyright (c) 2017, OARC, Inc. +# Copyright (c) 2017-2021, OARC, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published @@ -15,7 +15,7 @@ # along with this program. If not, see . AC_PREREQ(2.61) -AC_INIT([dumdumd], [1.1.0], [admin@dns-oarc.net], [dumdumd], [https://github.com/DNS-OARC/dumdumd/issues]) +AC_INIT([dumdumd], [1.2.0], [admin@dns-oarc.net], [dumdumd], [https://github.com/DNS-OARC/dumdumd/issues]) AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) AC_CONFIG_SRCDIR([src/dumdumd.c]) AC_CONFIG_HEADER([src/config.h]) diff --git a/src/Makefile.am b/src/Makefile.am index 5881b60..10e2e80 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,5 +1,5 @@ # dumdumd - packets sent lightning fast to dev null -# Copyright (c) 2017, OARC, Inc. +# Copyright (c) 2017-2021, OARC, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published diff --git a/src/dumdumd.c b/src/dumdumd.c index de00cb5..8c2faca 100644 --- a/src/dumdumd.c +++ b/src/dumdumd.c @@ -1,6 +1,6 @@ /* * dumdumd - packets sent lightning fast to dev null - * Copyright (c) 2017, OARC, Inc. + * Copyright (c) 2017-2021, OARC, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published