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

spinoco.protocol.http.header.Sec-WebSocket-Protocol.scala Maven / Gradle / Ivy

package spinoco.protocol.http.header

import spinoco.protocol.http.codec.helper._
import spinoco.protocol.http.header.value.HeaderCodecDefinition

/**
  * Header indicating protocols the client wishes to speak to server
  *
  * @param protocols  Protocols in order of the preference
  */
case class `Sec-WebSocket-Protocol`(protocols: List[String]) extends DefaultHeader


object `Sec-WebSocket-Protocol` { val codec =
  HeaderCodecDefinition[`Sec-WebSocket-Protocol`](commaDelimitedMin(trimmedAsciiToken, 1).xmap (`Sec-WebSocket-Protocol`.apply,_.protocols))
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy