final case class Host(host: String, port: Option[Int] = None) extends Product with Serializable

A Request header, that provides the host and port information

The "Host" header field in a request provides the host and port
information from the target URI, enabling the origin server to
distinguish among resources while servicing requests for multiple
host names on a single IP address.

This header was mandatory in version 1.1 of the Http protocol.

RFC-7230 Section 5.4

Source
Host.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Host
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Host(host: String, port: Option[Int] = None)

Value Members

  1. val host: String
  2. val port: Option[Int]