A stream peer that handles TLS connections. A stream peer that handles TLS connections. This object can be used to connect to a TLS server or accept a single TLS client connection. [b]Note:[/b] When exporting to Android, make sure to enable the [code]INTERNET[/code] permission in the Android export preset before exporting the project or using one-click deploy. Otherwise, network communication of any kind will be blocked by Android. $DOCS_URL/tutorials/networking/ssl_certificates.html Accepts a peer connection as a server using the given [param server_options]. See [method TLSOptions.server]. Connects to a peer using an underlying [StreamPeer] [param stream] and verifying the remote certificate is correctly signed for the given [param common_name]. You can pass the optional [param client_options] parameter to customize the trusted certification authorities, or disable the common name verification. See [method TLSOptions.client] and [method TLSOptions.client_unsafe]. Disconnects from host. Returns the status of the connection. See [enum Status] for values. Returns the underlying [StreamPeer] connection, used in [method accept_stream] or [method connect_to_stream]. Poll the connection to check for incoming bytes. Call this right before [method StreamPeer.get_available_bytes] for it to work properly. A status representing a [StreamPeerTLS] that is disconnected. A status representing a [StreamPeerTLS] during handshaking. A status representing a [StreamPeerTLS] that is connected to a host. A status representing a [StreamPeerTLS] in error state. An error status that shows a mismatch in the TLS certificate domain presented by the host and the domain requested for validation.