Update deps

This commit is contained in:
Frank Denis 2022-03-28 12:35:01 +02:00
parent df3fb0c9f8
commit c467e20311
78 changed files with 463 additions and 352 deletions

View file

@ -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)