mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
Update deps
This commit is contained in:
parent
df3fb0c9f8
commit
c467e20311
78 changed files with 463 additions and 352 deletions
4
vendor/github.com/jedisct1/go-dnsstamps/dnsstamps.go
generated
vendored
4
vendor/github.com/jedisct1/go-dnsstamps/dnsstamps.go
generated
vendored
|
@ -203,7 +203,7 @@ func newDNSCryptServerStamp(bin []byte) (ServerStamp, error) {
|
|||
|
||||
func newDoHServerStamp(bin []byte) (ServerStamp, error) {
|
||||
stamp := ServerStamp{Proto: StampProtoTypeDoH}
|
||||
if len(bin) < 22 {
|
||||
if len(bin) < 15 {
|
||||
return stamp, errors.New("Stamp is too short")
|
||||
}
|
||||
stamp.Props = ServerInformalProperties(binary.LittleEndian.Uint64(bin[1:9]))
|
||||
|
@ -318,7 +318,7 @@ func newODoHTargetStamp(bin []byte) (ServerStamp, error) {
|
|||
|
||||
func newDNSCryptRelayStamp(bin []byte) (ServerStamp, error) {
|
||||
stamp := ServerStamp{Proto: StampProtoTypeDNSCryptRelay}
|
||||
if len(bin) < 13 {
|
||||
if len(bin) < 9 {
|
||||
return stamp, errors.New("Stamp is too short")
|
||||
}
|
||||
binLen := len(bin)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue