Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 616 (0.02 sec)

  1. src/crypto/tls/handshake_server_test.go

    	}
    	// buf contains a TLS record, with a 5 byte record header and a 4 byte
    	// handshake header. The length of the ServerHello is taken from the
    	// handshake header.
    	serverHelloLen := int(buf[6])<<16 | int(buf[7])<<8 | int(buf[8])
    
    	var serverHello serverHelloMsg
    	// unmarshal expects to be given the handshake header, but
    	// serverHelloLen doesn't include it.
    	if !serverHello.unmarshal(buf[5 : 9+serverHelloLen]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top