From b03835c91cc575ed85d69f73cf19825d0627d2ff Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Thu, 25 Aug 2022 10:34:26 +0300 Subject: [PATCH] fix datagram RFC number in documentation for quic.Config --- interface.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/interface.go b/interface.go index c400f986048..ea94aa4567f 100644 --- a/interface.go +++ b/interface.go @@ -311,8 +311,7 @@ type Config struct { // This can be useful if version information is exchanged out-of-band. // It has no effect for a client. DisableVersionNegotiationPackets bool - // See https://datatracker.ietf.org/doc/draft-ietf-quic-datagram/. - // Datagrams will only be available when both peers enable datagram support. + // Enable QUIC datagram support (RFC 9221). EnableDatagrams bool Tracer logging.Tracer }