don't mention specific frame types in the documentation

This commit is contained in:
Marten Seemann 2019-03-07 13:45:53 +09:00
parent e66c216a17
commit f75b424454

View file

@ -208,13 +208,13 @@ type Config struct {
// If not set, it will default to 100. // If not set, it will default to 100.
// If set to a negative value, it doesn't allow any unidirectional streams. // If set to a negative value, it doesn't allow any unidirectional streams.
MaxIncomingUniStreams int MaxIncomingUniStreams int
// KeepAlive defines whether this peer will periodically send PING frames to keep the connection alive. // KeepAlive defines whether this peer will periodically send a packet to keep the connection alive.
KeepAlive bool KeepAlive bool
} }
// A Listener for incoming QUIC connections // A Listener for incoming QUIC connections
type Listener interface { type Listener interface {
// Close the server, sending CONNECTION_CLOSE frames to each peer. // Close the server. All active sessions will be closed.
Close() error Close() error
// Addr returns the local network addr that the server is listening on. // Addr returns the local network addr that the server is listening on.
Addr() net.Addr Addr() net.Addr