crypto/tls.Conn.conn (field)
18 uses
crypto/tls (current package)
conn.go#L28: conn net.Conn
conn.go#L125: return c.conn.LocalAddr()
conn.go#L130: return c.conn.RemoteAddr()
conn.go#L137: return c.conn.SetDeadline(t)
conn.go#L143: return c.conn.SetReadDeadline(t)
conn.go#L150: return c.conn.SetWriteDeadline(t)
conn.go#L605: if err := c.readFromUntil(c.conn, recordHeaderLen); err != nil {
conn.go#L642: return c.in.setErrorLocked(c.newRecordHeaderError(c.conn, "first record does not look like a TLS handshake"))
conn.go#L650: if err := c.readFromUntil(c.conn, recordHeaderLen+n); err != nil {
conn.go#L911: n, err := c.conn.Write(data)
conn.go#L921: n, err := c.conn.Write(c.sendBuf)
conn.go#L1325: return c.conn.Close()
conn.go#L1335: if err := c.conn.Close(); err != nil {
handshake_client.go#L255: cacheKey = clientSessionCacheKey(c.conn.RemoteAddr(), c.config)
handshake_client_tls13.go#L681: cacheKey := clientSessionCacheKey(c.conn.RemoteAddr(), c.config)
handshake_server.go#L845: Conn: c.conn,
tls.go#L37: conn: conn,
tls.go#L50: conn: conn,
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |