!str #18059 new hostInfo parameter to SslTls to transport createSslEngine arguments

This commit is contained in:
Johannes Rudolph 2015-07-23 14:09:31 +02:00
parent 9a3d8104fd
commit ce78c46115
3 changed files with 32 additions and 15 deletions

View file

@ -103,7 +103,7 @@ private[akka] case class ActorMaterializerImpl(
case tls: TlsModule // TODO solve this so TlsModule doesn't need special treatment here
val es = effectiveSettings(effectiveAttributes)
val props =
SslTlsCipherActor.props(es, tls.sslContext, tls.firstSession, tracing = false, tls.role, tls.closing)
SslTlsCipherActor.props(es, tls.sslContext, tls.firstSession, tracing = false, tls.role, tls.closing, tls.hostInfo)
val impl = actorOf(props, stageName(effectiveAttributes), es.dispatcher)
def factory(id: Int) = new ActorPublisher[Any](impl) {
override val wakeUpMsg = FanOut.SubstreamSubscribePending(id)