Refactor bufio (break change)

This commit is contained in:
世界 2022-08-11 17:02:56 +08:00
parent f4d911a3b1
commit 169983a8d7
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
10 changed files with 539 additions and 309 deletions

View file

@ -10,7 +10,10 @@ import (
"github.com/sagernet/sing/common/rw"
)
const MaxSocksaddrLength = 2 + 255 + 2
const (
MaxSocksaddrLength = 2 + 255 + 2
MaxIPSocksaddrLength = 1 + 16 + 2
)
type SerializerOption func(*Serializer)