mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 20:47:36 +03:00
Fix custom extension example
This commit is contained in:
parent
71bb385850
commit
69d19c5dc1
1 changed files with 4 additions and 2 deletions
|
@ -190,11 +190,13 @@ func (e *FakeDelegatedCredentialsExtension) Read(b []byte) (n int, err error) {
|
||||||
// Extension type
|
// Extension type
|
||||||
appendUint16(fakeDelegatedCredentials)
|
appendUint16(fakeDelegatedCredentials)
|
||||||
|
|
||||||
|
algosLength := 2 * len(e.SignatureAlgorithms)
|
||||||
|
|
||||||
// Extension data length
|
// Extension data length
|
||||||
appendUint16(uint16(len(e.SignatureAlgorithms)) + 2)
|
appendUint16(uint16(algosLength) + 2)
|
||||||
|
|
||||||
// Algorithms list length
|
// Algorithms list length
|
||||||
appendUint16(uint16(len(e.SignatureAlgorithms)))
|
appendUint16(uint16(algosLength))
|
||||||
|
|
||||||
// Algorithms list
|
// Algorithms list
|
||||||
for _, a := range e.SignatureAlgorithms {
|
for _, a := range e.SignatureAlgorithms {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue