mirror of
https://github.com/tinygo-org/net.git
synced 2026-08-22 13:28:58 +00:00
more complete PR for adding more net support (#64)
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
package net
|
||||
|
||||
import (
|
||||
"context"
|
||||
"internal/itoa"
|
||||
"io"
|
||||
"net/netip"
|
||||
@@ -139,3 +140,10 @@ func (c *TLSConn) Handshake() error {
|
||||
panic("TLSConn.Handshake() not implemented")
|
||||
return nil
|
||||
}
|
||||
|
||||
// HandshakeContext runs the client or server handshake protocol if it has not
|
||||
// yet been run. TINYGO: TLS is offloaded to the network device; this exists to
|
||||
// satisfy callers (e.g. pion/ice) that require the context-aware variant.
|
||||
func (c *TLSConn) HandshakeContext(ctx context.Context) error {
|
||||
return c.Handshake()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user