Fix some outdated doc comments

This commit is contained in:
2025-05-14 14:44:27 -04:00
parent 218949bd46
commit 0b98c768b3
2 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,8 @@ type Listener interface {
}
// Listen listens for incoming HOPP connections. The network must be one of
// "quic", "quic4", (IPv4-only) "quic6" (IPv6-only), or "unix".
// "quic", "quic4", (IPv4-only) "quic6" (IPv6-only), or "unix". For now, quic is
// not supported.
func Listen(network, address string) (Listener, error) {
switch network {
case "quic", "quic4", "quic6": return ListenQUIC(network, address, nil)