Skip to content

Commit

Permalink
Add QUIC support
Browse files Browse the repository at this point in the history
Signed-off-by: kpango <[email protected]>
  • Loading branch information
kpango committed Nov 11, 2024
1 parent 0bacaca commit 052b2b3
Show file tree
Hide file tree
Showing 38 changed files with 1,038 additions and 242 deletions.
2 changes: 2 additions & 0 deletions .gitfiles
Original file line number Diff line number Diff line change
Expand Up @@ -1251,6 +1251,8 @@ internal/net/net.go
internal/net/net_test.go
internal/net/option.go
internal/net/option_test.go
internal/net/quic/conn.go
internal/net/quic/listener.go
internal/observability/attribute/attribute.go
internal/observability/attribute/attribute_test.go
internal/observability/exporter/exporter.go
Expand Down
120 changes: 120 additions & 0 deletions charts/vald-helm-operator/crds/valdrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1273,6 +1273,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -2295,6 +2301,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -3171,6 +3183,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -4278,6 +4296,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -4477,6 +4501,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -4671,6 +4701,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -5783,6 +5819,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -5974,6 +6016,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -6167,6 +6215,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -7278,6 +7332,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -7376,6 +7436,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -8444,6 +8510,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -8635,6 +8707,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -8835,6 +8913,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -9747,6 +9831,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -9938,6 +10028,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -10888,6 +10984,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -11079,6 +11181,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -13011,6 +13119,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down Expand Up @@ -13202,6 +13316,12 @@ spec:
type: string
refresh_duration:
type: string
network:
type: string
enum:
- tcp
- udp
- unix
socket_option:
type: object
properties:
Expand Down
Loading

0 comments on commit 052b2b3

Please sign in to comment.