You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
quic-go provides the ability to gate connections with the config.GetConfigForClient callback and to verify the source address of packets with transport.VerifySourceAddress callback.
We should GetConfigForClient this to rate limit new connections and plug the connection gater and the conn limiter here so that users can do their custom limiting.
// GetConfigForClient is called for incoming connections.
// If the error is not nil, the connection attempt is refused.
GetConfigForClient func(info *ClientHelloInfo) (*Config, error)
The text was updated successfully, but these errors were encountered:
quic-go
provides the ability to gate connections with theconfig.GetConfigForClient
callback and to verify the source address of packets withtransport.VerifySourceAddress
callback.We should
GetConfigForClient
this to rate limit new connections and plug the connection gater and the conn limiter here so that users can do their custom limiting.The text was updated successfully, but these errors were encountered: