Skip to content

Commit

Permalink
Release 2.29.1
Browse files Browse the repository at this point in the history
- Make it possible to build the library and unit tests without
  libevent.
- Build all command-line utilities in bin/
- Add perf_client and perf_server command-line utilities to test
  performance according to the "perf" protocol.
  • Loading branch information
Dmitri Tikhonov committed Feb 18, 2021
1 parent 4ffff81 commit 8ecb980
Show file tree
Hide file tree
Showing 6 changed files with 673 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2021-02-18
- 2.29.1
- Make it possible to build the library and unit tests without
libevent.
- Build all command-line utilities in bin/
- Add perf_client and perf_server command-line utilities to test
performance according to the "perf" protocol.

2021-02-10
- 2.29.0
- [FEATURE] QUIC and HTTP/3 Internet Draft 34 support and v1 support.
Expand Down
4 changes: 4 additions & 0 deletions bin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ add_executable(echo_server echo_server.c prog.c test_common.c test_cert.c ${GETO
add_executable(echo_client echo_client.c prog.c test_common.c test_cert.c ${GETOPT_C})
add_executable(duck_server duck_server.c prog.c test_common.c test_cert.c ${GETOPT_C})
add_executable(duck_client duck_client.c prog.c test_common.c test_cert.c ${GETOPT_C})
add_executable(perf_client perf_client.c prog.c test_common.c test_cert.c ${GETOPT_C})
add_executable(perf_server perf_server.c prog.c test_common.c test_cert.c ${GETOPT_C})


IF (NOT MSVC)
Expand Down Expand Up @@ -67,6 +69,8 @@ TARGET_LINK_LIBRARIES(echo_server ${LIBS})
TARGET_LINK_LIBRARIES(echo_client ${LIBS})
TARGET_LINK_LIBRARIES(duck_server ${LIBS})
TARGET_LINK_LIBRARIES(duck_client ${LIBS})
TARGET_LINK_LIBRARIES(perf_client ${LIBS})
TARGET_LINK_LIBRARIES(perf_server ${LIBS})


INCLUDE(CheckFunctionExists)
Expand Down
Loading

0 comments on commit 8ecb980

Please sign in to comment.