public send(value as String) as Boolean throws SSLException:
Sends text to the peer.
| Parameter | Description |
|---|---|
value | Text to send. |
True when at least one byte was written.
import klyn.net.ssl
socket = SSLSocket("example.com", 443)
socket.send("PING")
socket.close()