mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-06 05:17:38 +03:00
Fix vectorised writer
This commit is contained in:
parent
5945fd0457
commit
cee85dcd30
7 changed files with 37 additions and 71 deletions
|
@ -327,6 +327,12 @@ func ReleaseMulti(buffers []*Buffer) {
|
|||
}
|
||||
}
|
||||
|
||||
func ToSliceMulti(buffers []*Buffer) [][]byte {
|
||||
return common.Map(buffers, func(it *Buffer) []byte {
|
||||
return it.Bytes()
|
||||
})
|
||||
}
|
||||
|
||||
func (b *Buffer) Cut(start int, end int) *Buffer {
|
||||
b.start += start
|
||||
b.end = len(b.data) - end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue