Skip to content

Commit

Permalink
remove warning comments of stable implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
hareku committed May 3, 2022
1 parent 5dedb7e commit f0b9bf8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions interface.go
Expand Up @@ -127,7 +127,6 @@ type SendStream interface {
// The Context is canceled as soon as the write-side of the stream is closed.
// This happens when Close() or CancelWrite() is called, or when the peer
// cancels the read-side of their stream.
// Warning: This API should not be considered stable and might change soon.
Context() context.Context
// SetWriteDeadline sets the deadline for future Write calls
// and any currently-blocked Write call.
Expand Down Expand Up @@ -184,11 +183,9 @@ type Connection interface {
// The error string will be sent to the peer.
CloseWithError(ApplicationErrorCode, string) error
// The context is cancelled when the connection is closed.
// Warning: This API should not be considered stable and might change soon.
Context() context.Context
// ConnectionState returns basic details about the QUIC connection.
// It blocks until the handshake completes.
// Warning: This API should not be considered stable and might change soon.
ConnectionState() ConnectionState

// SendMessage sends a message as a datagram, as specified in RFC 9221.
Expand Down Expand Up @@ -216,7 +213,6 @@ type EarlyConnection interface {
type Config struct {
// The QUIC versions that can be negotiated.
// If not set, it uses all versions available.
// Warning: This API should not be considered stable and will change soon.
Versions []VersionNumber
// The length of the connection ID in bytes.
// It can be 0, or any value between 4 and 18.
Expand Down

0 comments on commit f0b9bf8

Please sign in to comment.