trait RemoteConnection extends AnyRef
Ordering
- Alphabetic
- By Inheritance
Inherited
- RemoteConnection
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def clientCertificateChain: Option[Seq[X509Certificate]]
The X509 certificate chain presented by a client during SSL requests.
- abstract def remoteAddress: InetAddress
The remote client's address.
- 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
- def equals(obj: Any): Boolean
- Definition Classes
- RemoteConnection → AnyRef → Any
- def remoteAddressString: String
The remote client's address in text form.
- def toString(): String
- Definition Classes
- RemoteConnection → AnyRef → Any
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.