Skip to content

Commit a74702c

Browse files
committed
Release 3.1.0
1 parent d755d26 commit a74702c

File tree

276 files changed

+294
-287
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

276 files changed

+294
-287
lines changed

APIs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017 - 2021 LiteSpeed Technologies Inc. See LICENSE.
1+
# Copyright (c) 2017 - 2022 LiteSpeed Technologies Inc. See LICENSE.
22
LSQUIC APIs
33
===========
44

CHANGELOG

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2022-05-06
2+
- 3.1.0
3+
- Better handling of transport parameter max_table_capcity < 32
4+
- Fix NULL pointer dereference in handshake
5+
- Fix 0-RTT transport parameter validation (issue #367)
6+
- Remove unnecessary debug log to avoid NULL pointer dereference
7+
- Tick connection on datagram write (pull #314)
8+
- Do not dispatch write event for FINISHED stream
9+
- Tweaks for CMake configuration (pull #354 #369 #370 #373 #374)
10+
- Update ls-qpack to 2.3.0
11+
112
2022-01-10
213
- 3.0.4
314
- Fix overly strict assert()

CMakeLists.txt

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017 - 2021 LiteSpeed Technologies Inc. See LICENSE.
1+
# Copyright (c) 2017 - 2022 LiteSpeed Technologies Inc. See LICENSE.
22
cmake_minimum_required(VERSION 3.0...3.23)
33

44

@@ -336,11 +336,3 @@ INSTALL(FILES
336336
include/lsxpack_header.h
337337
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/lsquic
338338
)
339-
340-
if(WIN32)
341-
# The other file in wincompat is not used in installed headers
342-
INSTALL(FILES
343-
wincompat/vc_compat.h
344-
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/lsquic
345-
)
346-
endif()

CONTRIBUTORS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017 - 2021 LiteSpeed Technologies Inc. See LICENSE.
1+
# Copyright (c) 2017 - 2022 LiteSpeed Technologies Inc. See LICENSE.
22
In addition to the LiteSpeed QUIC Team, the following people contributed
33
to the LiteSpeed QUIC and HTTP/3 Library:
44

EXAMPLES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017 - 2021 LiteSpeed Technologies Inc. See LICENSE.
1+
# Copyright (c) 2017 - 2022 LiteSpeed Technologies Inc. See LICENSE.
22
LSQUIC Examples
33
===============
44

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017 - 2021 LiteSpeed Technologies Inc
3+
Copyright (c) 2017 - 2022 LiteSpeed Technologies Inc
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

bin/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017 - 2021 LiteSpeed Technologies Inc. See LICENSE.
1+
# Copyright (c) 2017 - 2022 LiteSpeed Technologies Inc. See LICENSE.
22

33
include_directories(${CMAKE_CURRENT_BINARY_DIR})
44
LIST(APPEND LIBS ${EVENT_LIB})

bin/duck_client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2017 - 2021 LiteSpeed Technologies Inc. See LICENSE. */
1+
/* Copyright (c) 2017 - 2022 LiteSpeed Technologies Inc. See LICENSE. */
22
/*
33
* duck_client.c -- The siduck client. See
44
* https://tools.ietf.org/html/draft-pardue-quic-siduck-00

bin/duck_server.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2017 - 2021 LiteSpeed Technologies Inc. See LICENSE. */
1+
/* Copyright (c) 2017 - 2022 LiteSpeed Technologies Inc. See LICENSE. */
22
/*
33
* A duck quacks! The server for the siduck protocol:
44
* https://tools.ietf.org/html/draft-pardue-quic-siduck-00

bin/echo_client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2017 - 2021 LiteSpeed Technologies Inc. See LICENSE. */
1+
/* Copyright (c) 2017 - 2022 LiteSpeed Technologies Inc. See LICENSE. */
22
/*
33
* echo_client.c -- This is really a "line client:" it connects to QUIC server
44
* and sends it stuff, line by line. It works in tandem with echo_server.

0 commit comments

Comments
 (0)