trait RemoteConnection extends AnyRef

Contains information about the connection from the remote client to the server. Connection information may come from the socket or from other metadata attached to the request by an upstream proxy, e.g. Forwarded headers.

Source
RemoteConnection.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RemoteConnection
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def clientCertificateChain: Option[Seq[X509Certificate]]

    The X509 certificate chain presented by a client during SSL requests.

  2. abstract def remoteAddress: InetAddress

    The remote client's address.

  3. abstract def secure: Boolean

    Whether or not the connection was over a secure (e.g.

    Whether or not the connection was over a secure (e.g. HTTPS) connection.

Concrete Value Members

  1. def equals(obj: Any): Boolean
    Definition Classes
    RemoteConnection → AnyRef → Any
  2. def remoteAddressString: String

    The remote client's address in text form.

  3. def toString(): String
    Definition Classes
    RemoteConnection → AnyRef → Any