mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-06 05:17:38 +03:00
Refine buffer
This commit is contained in:
parent
31d4b88581
commit
f16dd7a336
30 changed files with 993 additions and 209 deletions
|
@ -31,6 +31,12 @@ func StackNew() *Buffer {
|
|||
}
|
||||
}
|
||||
|
||||
func StackNewMax() *Buffer {
|
||||
return &Buffer{
|
||||
data: make([]byte, 65535),
|
||||
}
|
||||
}
|
||||
|
||||
func StackNewSize(size int) *Buffer {
|
||||
return &Buffer{
|
||||
data: Make(size),
|
||||
|
@ -291,6 +297,14 @@ func (b *Buffer) Release() {
|
|||
*b = Buffer{}
|
||||
}
|
||||
|
||||
func (b *Buffer) Cut(start int, end int) *Buffer {
|
||||
b.start += start
|
||||
b.end = len(b.data) - end
|
||||
return &Buffer{
|
||||
data: b.data[b.start:b.end],
|
||||
}
|
||||
}
|
||||
|
||||
func (b Buffer) Len() int {
|
||||
return b.end - b.start
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue