mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
don't mention specific frame types in the documentation
This commit is contained in:
parent
e66c216a17
commit
f75b424454
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue