diff --git a/Sources/NIOTransportServices/StateManagedListenerChannel.swift b/Sources/NIOTransportServices/StateManagedListenerChannel.swift index c28d8fb..8dc3501 100644 --- a/Sources/NIOTransportServices/StateManagedListenerChannel.swift +++ b/Sources/NIOTransportServices/StateManagedListenerChannel.swift @@ -146,10 +146,12 @@ internal class StateManagedListenerChannel: S self.connectionQueue = eventLoop.channelQueue(label: "nio.transportservices.listenerchannel", qos: qos) self.protocolOptions = protocolOptions self.tlsOptions = tlsOptions + self.nwParametersConfigurator = nwParametersConfigurator self.childLoopGroup = childLoopGroup self.childChannelQoS = childChannelQoS self.childProtocolOptions = childProtocolOptions self.childTLSOptions = childTLSOptions + self.childNWParametersConfigurator = childNWParametersConfigurator // Must come last, as it requires self to be completely initialized. self._pipeline = ChannelPipeline(channel: self)