Uses of Class
io.netty.handler.codec.quic.QuicConnectionAddress
-
Packages that use QuicConnectionAddress Package Description io.netty.handler.codec.quic QUIC implementation -
-
Uses of QuicConnectionAddress in io.netty.handler.codec.quic
Fields in io.netty.handler.codec.quic declared as QuicConnectionAddress Modifier and Type Field Description static QuicConnectionAddress
QuicConnectionAddress. EPHEMERAL
SpecialQuicConnectionAddress
that should be used when the connection address should be generated and chosen on the fly.Methods in io.netty.handler.codec.quic that return QuicConnectionAddress Modifier and Type Method Description @Nullable QuicConnectionAddress
QuicChannel. localAddress()
Returns the localQuicConnectionAddress
.static QuicConnectionAddress
QuicConnectionAddress. random()
Return a random generatedQuicConnectionAddress
of maximum size that can be used to connect aQuicChannel
static QuicConnectionAddress
QuicConnectionAddress. random(int length)
Return a random generatedQuicConnectionAddress
of a given length that can be used to connect aQuicChannel
@Nullable QuicConnectionAddress
QuicChannel. remoteAddress()
Returns the remoteQuicConnectionAddress
.Methods in io.netty.handler.codec.quic with parameters of type QuicConnectionAddress Modifier and Type Method Description QuicChannelBootstrap
QuicChannelBootstrap. connectionAddress(QuicConnectionAddress connectionAddress)
Set theQuicConnectionAddress
to use.
-