Shadowsocks 2022 protocol change

This commit is contained in:
世界 2022-05-15 07:20:22 +08:00
parent 7d06e20837
commit 04cd76f0aa
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
11 changed files with 294 additions and 115 deletions

View file

@ -50,14 +50,9 @@ func From(data []byte) *Buffer {
}
func As(data []byte) *Buffer {
size := len(data)
max := cap(data)
if size != max {
data = data[:max]
}
return &Buffer{
data: data,
end: size,
end: len(data),
}
}