mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
f913a2972b
- [BUGFIX] ID-28: do not use TLS middlebox compatibility mode in ClientHello. This change requires using a newer version of BoringSSL. - [BUGFIX] Free connections in Advisory Tick Time Queue in engine dtor. - [BUGFIX] IETF QUIC client: narrow migration check to a single path. - [BUGFIX] NULL dereference: set function pointers for alarm for path challenges 2 and 3. - [BUGFIX] HTTP/3 headers may be followed immediately by trailers. - [BUGFIX] Log messages when SCID changes.
20 lines
595 B
YAML
20 lines
595 B
YAML
freebsd_instance:
|
|
image: freebsd-12-1-release-amd64
|
|
|
|
task:
|
|
install_script:
|
|
- pkg install -y cmake libevent git go
|
|
- git clone https://boringssl.googlesource.com/boringssl
|
|
- cd boringssl
|
|
# This is so that both GQUIC and IETF branches build. Just picking
|
|
# a known good revision:
|
|
- git checkout 251b5169fd44345f455438312ec4e18ae07fd58c
|
|
- cmake .
|
|
- make
|
|
- cd -
|
|
script:
|
|
- git submodule init
|
|
- git submodule update
|
|
- cmake -DBORINGSSL_DIR=$PWD/boringssl .
|
|
- make
|
|
- make test
|