Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jelu committed Dec 8, 2023
1 parent 4ed8d71 commit 79ccbd5
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 8 deletions.
30 changes: 30 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
2023-12-08 Jerry Lundström

Release 1.3.0

New stuff:
- Add `dumdohd`, reflect DNS-over-HTTPS using nghttp2 example server
- Add `-Q <num>` to set listen backlog
- Dockerfile
- Add clang-format and format code

Bugfixes and tweaks:
- Update README about compiling environment
- Fix #20: Flush stdout on stats
- `dumdohd`: Remove deprecated OpenSSL functions
- `dumdumd`: Ignore SIGPIPE, can happen during `BIO_write()`

404fd43 listen backlog
888676b Make listen backlog configurable
28a7a29 Split Dockerfile to build and runtime phases to cut down image size
097686f Add dumdohd to .gitignore
9f01560 Dockerfile
196fcc1 OpenSSL 3.0, SIGPIPE
98e962a DoH
c2c8bf3 DoH random goaway
a738383 DoH
5683124 Dockerfile
b33675c Flush stdout
4acb0bd README
b8f3e4d Fix changelog

2021-04-06 Jerry Lundström

Release 1.2.0
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-2021, OARC, Inc.
# Copyright (c) 2017-2023, 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 README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# dumdumd

High performance UDP/TCP server that... just drops everything you send to it
High performance UDP/TCP server that... just drops/reflects everything you send to it

## Requirements

Expand Down Expand Up @@ -45,7 +45,7 @@ Jerry Lundström <[email protected]>

## Copyright

Copyright (c) 2017-2021, OARC, Inc.
Copyright (c) 2017-2023, 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-2021, OARC, Inc.
# Copyright (c) 2017-2023, 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-2021, OARC, Inc.
# Copyright (c) 2017-2023, 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.2.0], [[email protected]], [dumdumd], [https://github.com/DNS-OARC/dumdumd/issues])
AC_INIT([dumdumd], [1.3.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-2021, OARC, Inc.
# Copyright (c) 2017-2023, 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-2021, OARC, Inc.
* Copyright (c) 2017-2023, 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 79ccbd5

Please sign in to comment.