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
Marten Seemann
514df55288
http3: enforce ordering requirement between pseudo and regular headers ( #3968 )
...
* http3: enforce ordering requirement between pseudo and regular headers
* simplify logic
2023-07-18 09:13:16 -07:00
Ferdinand Holzer
4378283f95
surface connection error as connection context cancelation cause ( #3961 )
...
* connection: surface connection error as connection context cancellation cause
* docs: add note about connection context canellation cause
2023-07-17 21:31:31 -07:00
Marten Seemann
ab192a084d
http3: reject negative values for the Content-Length header ( #3966 )
2023-07-17 19:23:54 -07:00
Marten Seemann
c4b3d979bd
http3: reject header field values with invalid characters ( #3967 )
2023-07-17 18:56:29 -07:00
Marten Seemann
baee8184fc
http3: reject header field names with invalid characters ( #3965 )
2023-07-17 18:33:24 -07:00
Marten Seemann
3edacebff0
http3: reject header field that contain non-lowercase characters ( #3964 )
2023-07-17 18:16:01 -07:00
Marten Seemann
8ac22a9483
http3: set the Content-Length header in the http.Request.Header map ( #3963 )
2023-07-16 19:26:15 -07:00
Marten Seemann
3dea8f8a9b
http3: don't send more than http.Request.ContentLength bytes ( #3960 )
2023-07-16 19:16:52 -07:00
WeidiDeng
de8d7a32b8
http3: return http.ErrContentLength when writing too large response ( #3953 )
2023-07-12 23:20:35 -07:00
WeidiDeng
9e7fa4773a
http3: implement FlushError for the response writer ( #3951 )
...
* implement FlushError interface for http3 response writer
* move where to log flush error
2023-07-12 20:40:53 -07:00
Marten Seemann
418b866e32
perform send / receive buffer increases when setting up the connection ( #3949 )
...
The UDP send and receive buffer is now increased when calling
OptimizeConn.
2023-07-12 10:54:20 -07:00
WeidiDeng
2c4371b6a9
http3: add Date response header if not set ( #3952 )
...
* automatically add date header if not already set
* improve comment for Date header
---------
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
2023-07-12 10:30:33 -07:00
WeidiDeng
f97c9bf88c
http3: don't write response headers if the handler panicked ( #3950 )
2023-07-12 09:32:33 -07:00
Marten Seemann
fcf8d4b3ff
http3: validate Host header before sending ( #3948 )
2023-07-11 23:27:24 -07:00
Marten Seemann
0fe21c7d6f
oss-fuzz: manually install Go, fix paths ( #3941 )
2023-07-08 16:41:04 -07:00
Marten Seemann
783d667601
move oss-fuzz build script to this repo ( #3940 )
2023-07-06 09:03:18 -07:00