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

spinoco.protocol.http.header.Host.scala Maven / Gradle / Ivy

The newest version!
package spinoco.protocol.http.header

import spinoco.protocol.http.HostPort
import spinoco.protocol.http.header.value.HeaderCodecDefinition

/**
  *   RFC 7231 section 5.4
  *
  *   @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Host
  */
sealed case class Host(value: HostPort) extends DefaultHeader


object Host {  val codec =
  HeaderCodecDefinition[Host](HostPort.codec.xmap (Host.apply, _.value))
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy