Skip to content

Commit 8ecb980

Browse files
author
Dmitri Tikhonov
committed
Release 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.
1 parent 4ffff81 commit 8ecb980

File tree

6 files changed

+673
-2
lines changed

6 files changed

+673
-2
lines changed

CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2021-02-18
2+
- 2.29.1
3+
- Make it possible to build the library and unit tests without
4+
libevent.
5+
- Build all command-line utilities in bin/
6+
- Add perf_client and perf_server command-line utilities to test
7+
performance according to the "perf" protocol.
8+
19
2021-02-10
210
- 2.29.0
311
- [FEATURE] QUIC and HTTP/3 Internet Draft 34 support and v1 support.

bin/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ add_executable(echo_server echo_server.c prog.c test_common.c test_cert.c ${GETO
3232
add_executable(echo_client echo_client.c prog.c test_common.c test_cert.c ${GETOPT_C})
3333
add_executable(duck_server duck_server.c prog.c test_common.c test_cert.c ${GETOPT_C})
3434
add_executable(duck_client duck_client.c prog.c test_common.c test_cert.c ${GETOPT_C})
35+
add_executable(perf_client perf_client.c prog.c test_common.c test_cert.c ${GETOPT_C})
36+
add_executable(perf_server perf_server.c prog.c test_common.c test_cert.c ${GETOPT_C})
3537

3638

3739
IF (NOT MSVC)
@@ -67,6 +69,8 @@ TARGET_LINK_LIBRARIES(echo_server ${LIBS})
6769
TARGET_LINK_LIBRARIES(echo_client ${LIBS})
6870
TARGET_LINK_LIBRARIES(duck_server ${LIBS})
6971
TARGET_LINK_LIBRARIES(duck_client ${LIBS})
72+
TARGET_LINK_LIBRARIES(perf_client ${LIBS})
73+
TARGET_LINK_LIBRARIES(perf_server ${LIBS})
7074

7175

7276
INCLUDE(CheckFunctionExists)

0 commit comments

Comments
 (0)