Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for readRecordOrCCS (0.3 sec)

  1. src/crypto/tls/conn.go

    	err.Conn = conn
    	copy(err.RecordHeader[:], c.rawInput.Bytes())
    	return err
    }
    
    func (c *Conn) readRecord() error {
    	return c.readRecordOrCCS(false)
    }
    
    func (c *Conn) readChangeCipherSpec() error {
    	return c.readRecordOrCCS(true)
    }
    
    // readRecordOrCCS reads one or more TLS records from the connection and
    // updates the record layer state. Some invariants:
    //   - c.in must be locked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top