Add keepalive support for clients in quic.Config

Fixes #525.
This commit is contained in:
krish7919 (Krish) 2017-05-05 15:39:20 +02:00 committed by Lucas Clemente
parent 649933d17b
commit 755dedf1ff
6 changed files with 44 additions and 1 deletions

View file

@ -86,6 +86,8 @@ type Config struct {
// MaxReceiveConnectionFlowControlWindow is the connection-level flow control window for receiving data.
// If this value is zero, it will default to 1.5 MB for the server and 15 MB for the client.
MaxReceiveConnectionFlowControlWindow protocol.ByteCount
// KeepAlive defines whether this peer will periodically send PING frames to keep the connection alive.
KeepAlive bool
}
// A Listener for incoming QUIC connections