All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twitter.finagle.netty4.ssl.Alpn.scala Maven / Gradle / Ivy

There is a newer version: 24.2.0
Show newest version
package com.twitter.finagle.netty4.ssl

import com.twitter.finagle.ssl.ApplicationProtocols
import com.twitter.finagle.Stack

/**
 * A class eligible for configuring which protocols to specify in the ALPN
 * handshake.
 */
private[finagle] case class Alpn(protocols: ApplicationProtocols)

private[finagle] object Alpn {
  implicit val param = Stack.Param(Alpn(ApplicationProtocols.Unspecified))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy