mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
26e8f082c9
- [FEATURE] QUIC and HTTP/3 Internet Draft 34 support and v1 support. The latter is turned off by default. - Drop support for ID-28 and ID-32. - [BUGFIX] IETF QUIC mini conn receive history (trechist): allow unlimited inserts by dropping smallest elements. - [BUGFIX] gQUIC: set STTL to correct value, issue #226. - [BUGFIX] Account for poison packet gap when MTU probe was too large.
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 a2278d4d2cabe73f6663e3299ea7808edfa306b9
|
|
- cmake .
|
|
- make
|
|
- cd -
|
|
script:
|
|
- git submodule init
|
|
- git submodule update
|
|
- cmake -DBORINGSSL_DIR=$PWD/boringssl .
|
|
- make
|
|
- make test
|