Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jelu committed Apr 6, 2021
1 parent 8ac438b commit 907dfce
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 7 deletions.
18 changes: 18 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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 <percent>`: 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!
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Jerry Lundström <[email protected]>

## 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
Expand Down
2 changes: 1 addition & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -15,7 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

AC_PREREQ(2.61)
AC_INIT([dumdumd], [1.1.0], [[email protected]], [dumdumd], [https://github.com/DNS-OARC/dumdumd/issues])
AC_INIT([dumdumd], [1.2.0], [[email protected]], [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])
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/dumdumd.c
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 907dfce

Please sign in to comment.