func encoding/binary.Write
12 uses
encoding/binary (current package)
binary.go#L410: func Write(w io.Writer, order ByteOrder, data any) error {
github.com/refraction-networking/utls
u_conn.go#L636: binary.Write(bufferedWriter, binary.BigEndian, typeClientHello)
u_conn.go#L638: binary.Write(bufferedWriter, binary.BigEndian, helloLenBytes)
u_conn.go#L639: binary.Write(bufferedWriter, binary.BigEndian, hello.Vers)
u_conn.go#L641: binary.Write(bufferedWriter, binary.BigEndian, hello.Random)
u_conn.go#L643: binary.Write(bufferedWriter, binary.BigEndian, uint8(len(hello.SessionId)))
u_conn.go#L644: binary.Write(bufferedWriter, binary.BigEndian, hello.SessionId)
u_conn.go#L646: binary.Write(bufferedWriter, binary.BigEndian, uint16(len(hello.CipherSuites)<<1))
u_conn.go#L648: binary.Write(bufferedWriter, binary.BigEndian, suite)
u_conn.go#L651: binary.Write(bufferedWriter, binary.BigEndian, uint8(len(hello.CompressionMethods)))
u_conn.go#L652: binary.Write(bufferedWriter, binary.BigEndian, hello.CompressionMethods)
u_conn.go#L655: binary.Write(bufferedWriter, binary.BigEndian, uint16(extensionsLen))
 |
The pages are generated with Golds v0.8.4. (GOOS=linux 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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |