sealed trait TLSSocket[F[_]] extends Socket[F] with TLSSocketPlatform[F]
TCP socket that supports encryption via TLS.
To construct a TLSSocket
, use the client
and server
methods on TLSContext
.
- Source
- TLSSocket.scala
- Alphabetic
- By Inheritance
- TLSSocket
- TLSSocketPlatform
- Socket
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def applicationProtocol: F[String]
Provides access to the current application protocol that has been negotiated.
- abstract def beginHandshake: F[Unit]
Initiates handshaking -- either the initial or a renegotiation.
Initiates handshaking -- either the initial or a renegotiation.
- Definition Classes
- TLSSocketPlatform
- abstract def endOfInput: F[Unit]
Indicates that this channel will not read more data.
Indicates that this channel will not read more data. Causes
End-Of-Stream
be signalled toavailable
. This is a no-op on Node.js.- Definition Classes
- Socket
- abstract def endOfOutput: F[Unit]
Indicates to peer, we are done writing.
Indicates to peer, we are done writing. *
- Definition Classes
- Socket
- abstract def isOpen: F[Boolean]
- Definition Classes
- Socket
- abstract def localAddress: F[SocketAddress[IpAddress]]
Asks for the local address of the socket.
Asks for the local address of the socket.
- Definition Classes
- Socket
- abstract def read(maxBytes: Int): F[Option[Chunk[Byte]]]
Reads up to
maxBytes
from the peer.Reads up to
maxBytes
from the peer.Returns
None
if the "end of stream" is reached, indicating there will be no more bytes sent.- Definition Classes
- Socket
- abstract def readN(numBytes: Int): F[Chunk[Byte]]
Reads exactly
numBytes
from the peer in a single chunk.Reads exactly
numBytes
from the peer in a single chunk.Returns a chunk with size <
numBytes
upon reaching the end of the stream.- Definition Classes
- Socket
- abstract def reads: Stream[F, Byte]
Reads bytes from the socket as a stream.
Reads bytes from the socket as a stream.
- Definition Classes
- Socket
- abstract def remoteAddress: F[SocketAddress[IpAddress]]
Asks for the remote address of the peer.
Asks for the remote address of the peer.
- Definition Classes
- Socket
- abstract def session: F[SSLSession]
Provides access to the current
SSLSession
for purposes of querying session info such as the negotiated cipher suite or the peer certificate. - abstract def write(bytes: Chunk[Byte]): F[Unit]
Writes
bytes
to the peer.Writes
bytes
to the peer.Completes when the bytes are written to the socket.
- Definition Classes
- Socket
- abstract def writes: Pipe[F, Byte, Nothing]
Writes the supplied stream of bytes to this socket via
write
semantics.Writes the supplied stream of bytes to this socket via
write
semantics.- Definition Classes
- Socket
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])