Marten Seemann
62b3f22a77
fix handling of ACK frames serialized after CRYPTO frames ( #4018 )
2023-08-08 23:16:13 -06:00
Marten Seemann
fba8d784a8
add tls.ClientHelloInfo.Conn for recursive GetConfigForClient calls ( #4016 )
2023-08-08 23:16:13 -06:00
Marten Seemann
f8dd2f2c8f
add error handling when confirming handshake on HANDSHAKE_DONE frames ( #4017 )
2023-08-08 23:16:13 -06:00
Marten Seemann
18e4a9f516
set a net.Conn for tls.ClientHelloInfo.Conn used by GetCertificate ( #4014 )
2023-08-08 23:16:13 -06:00
Gaukas Wang
f7b03bf6b3
deps: upgrade dependencies after Go 1.21 releases ( #12 )
2023-08-08 23:15:52 -06:00
Gaukas Wang
e725752674
docs: switch CI badge from gaukas to refraction ( #11 )
2023-08-05 22:55:53 -06:00
Gaukas Wang
9d3fe2aa07
new: support variable length quic frame padding ( #10 )
...
Add variable length QUIC frame padding support. Refactor how QUIC frames are defined in a QUIC Spec. Update documentation and examples. Added Chrome and Firefox parrots.
Close #3 .
2023-08-05 22:47:08 -06:00
Gaukas Wang
5e966a9bec
fix: CI qtls tests ( #9 )
...
Remove some unlinked qtls functionalities.
2023-08-05 17:44:40 -06:00
Gaukas Wang
1644f906ad
Update ginkgo_test.yml ( #8 )
2023-08-05 14:08:55 -06:00
Gaukas Wang
9e1965d28b
bug: ci taking too long to run ( #7 )
...
* breaking: separate CI build and test workflows
Separate CI build and test into individual workflows.
Add matrix-based CI build and test for better coverage.
Update build status badges.
* fix: ginko_test format and condition
2023-08-05 13:04:13 -06:00
Gaukas Wang
686d29bc91
fix: failed tests due to a bad searching criterion ( #5 )
...
... and fix two bad reference link to quic-go's repo: they were not meant to be found with uquic.
2023-08-05 12:29:41 -06:00
Gaukas Wang
65a944f39a
fix: README.md build status badge
...
Badge was linked to url with bad incorrect filenames.
2023-08-05 01:26:48 -06:00
Gaukas Wang
0d323c5cb0
fix: broken example
...
Fix old broken examples which does not really mimic Firefox. Now it looks perfectly like Firefox! (only the first packet)
2023-08-05 01:21:59 -06:00
Gaukas Wang
881967a953
docs: include roadmap
2023-08-05 01:18:16 -06:00
Gaukas Wang
4e1a4d03f6
fix: broken utls deps
...
Fix broken uTLS dependencies due to the required version is not published until now.
2023-08-05 01:17:25 -06:00
Gaukas Wang
9c624f0355
docs: use png quic-go logo [ci skip]
...
...to align with quic-go/quic-go.
2023-08-03 19:02:43 -06:00
Gaukas Wang
95575f5fe7
break: update repo url [ci skip]
...
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
2023-08-03 18:58:52 -06:00
Gaukas Wang
a72582e6aa
docs: minor adjustment
2023-08-03 18:33:55 -06:00
Gaukas Wang
44705664c2
refactor: remove redundancy and clean up
...
Remove interop which will fail to build and unnecessary for uQUIC. Remove all quic-go CI. Add Go build & test CI.
2023-08-03 18:33:14 -06:00
Gaukas Wang
10eaa8489c
init: separate from quic-go tree
2023-08-03 18:18:56 -06:00
Gaukas Wang
03e314649b
docs: uquic README.md
2023-08-03 18:14:01 -06:00
Gaukas Wang
4065c5b85e
Merge pull request #1 from gaukas/uquic-dev
...
new: uQUIC
2023-08-02 16:11:09 -06:00
Gaukas Wang
ea40752ca3
new: uquic
2023-08-02 15:38:16 -06:00
Gaukas Wang
a9a033da78
Merge branch 'quic-go:master' into uquic
2023-08-01 20:58:24 -06:00
Ameagari
1c47ebefc0
check transport parameters after 0-RTT resumption ( #3985 )
...
* check new transport parameters do not contain redueced limits
* redefine ValidForUpdate and add tests
* fix test assertion and update comment
2023-08-01 18:34:42 -07:00
Marten Seemann
f3a0ce1599
set a net.Conn with the correct addresses on the tls.ClientHelloInfo ( #4001 )
2023-07-31 13:32:10 -07:00
Gaukas Wang
95f3eaaa66
wip: InitialSpec (2/n)
...
- Added QUICFrame to describe QUIC Frame found in an Initial Packet, including PADDING, PING, and CRYPTO.
- Added QUICSpec to describe the QUIC Header and QUIC Frames' order/length/offset.
2023-07-30 23:20:36 -06:00
Gaukas Wang
20e2a487b8
wip: implement InitialSpec type (1/n)
...
- TransportParameters are now set as a part of ClientHelloSpecs
- Removes transportparameters package and uses tls.TransportParameters
2023-07-30 20:01:07 -06:00
Gaukas Wang
9327068651
dep: qtls now points to utls in all cases
...
Since uTLS essentially is a fork of the latest crypto/tls, it would work for any Go version if no compilation error.
2023-07-30 15:20:49 -06:00
Gaukas Wang
8463016cbc
impl: cleaning up some debug flag/symbol
2023-07-29 23:53:01 -06:00
Gaukas Wang
8a3397d0ae
impl: example for uquic
2023-07-29 23:47:19 -06:00
Gaukas Wang
fca46117e4
impl: uquic with utls
2023-07-29 23:45:16 -06:00
Gaukas Wang
251b3afe6e
impl: QUIC Header mimicry
2023-07-29 13:17:27 -06:00
Marten Seemann
44a58dc425
ci: update Go 1.21 to rc3 ( #3994 )
2023-07-28 21:45:45 -07:00
roc
32f8b20ae5
http3: fix check for content length of the response ( #3998 )
...
* fix: check response content-length other than request content-length
* Update http3/client.go
---------
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
2023-07-28 21:18:26 -07:00
Gaukas Wang
1429e6718b
impl: custom ordered quic transport parameters
...
- Implementing QUIC Transport Parameters with custom order
- Added limited support to a few more QUIC Transport Parameters
2023-07-28 00:50:49 -06:00
Marten Seemann
469a6153b6
use a synchronous API for the crypto setup ( #3939 )
2023-07-21 10:00:42 -07:00
WeidiDeng
2c0e7e02b0
http3: panic in ResponseWriter.WriteHeader for invalid status codes ( #3984 )
...
* response writer: panic for invalid status code
* add tests
* readd imports
* readd imports
* fix imports
2023-07-21 09:50:51 -07:00
Marten Seemann
2bcfe5bc4b
check for WSAEMSGSIZE errors when receiving UDP packets on Windows ( #3982 )
...
* check for WSAEMSGSIZE errors when receiving UDP packets on Windows
* check EMSGSIZE error on macOS
2023-07-20 20:31:57 -07:00
WeidiDeng
2183283622
http3: discard negative content-length header when writing response ( #3983 )
...
* response writer: discard negative content-length header
* shorten comment
---------
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
2023-07-20 11:42:37 -07:00
Marten Seemann
5a22ac8970
http3: enforce that DATA frames don't exceed Content-Length ( #3980 )
2023-07-20 09:47:01 -07:00
Sukun
56cd866840
enable the DF bit on macOS ( #3946 )
...
* set DF bit on macOS
* simplify macOS version check
* link to chromium source for macOS 11 check
2023-07-19 12:01:03 -07:00
Marten Seemann
ae8bdd79e0
http3: use correct error code when request header parsing fails ( #3979 )
2023-07-19 11:46:10 -07:00
Marten Seemann
a347d664e2
remove OptimizeConn, add a Transport.WriteTo method instead ( #3957 )
...
* remove OptimizeConn, add a Transport.WriteTo method instead
* fix race condition in Transport.WriteTo
2023-07-19 10:28:11 -07:00
Ferdinand Holzer
27301f791f
surface stream error as stream context cancelation cause ( #3970 )
...
* send stream: surface error as stream context cancellation cause
* Update send_stream_test.go
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
---------
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
2023-07-19 10:12:01 -07:00
Marten Seemann
5ae28928db
http3: reject unknown pseudo headers ( #3973 )
2023-07-18 22:42:26 -07:00
Marten Seemann
b6dbfc8c06
http3: reject responses that don't set the :status header ( #3975 )
2023-07-18 22:26:46 -07:00
Marten Seemann
5d59c3059f
http3: deduplicate Content-Length headers ( #3972 )
2023-07-18 21:52:21 -07:00
Marten Seemann
bb296b8c17
http3: unify handling of request and response headers ( #3969 )
2023-07-18 21:39:05 -07:00
Marten Seemann
ad16aa765d
http3: refactor header field processing into a separate function ( #3971 )
2023-07-18 21:16:50 -07:00