mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-06 05:17:38 +03:00
Initial commit
This commit is contained in:
commit
5cc189a169
32 changed files with 2565 additions and 0 deletions
24
common/buf/buffer.go
Normal file
24
common/buf/buffer.go
Normal file
|
@ -0,0 +1,24 @@
|
|||
package buf
|
||||
|
||||
var Empty []byte
|
||||
|
||||
func init() {
|
||||
Empty = make([]byte, 128)
|
||||
}
|
||||
|
||||
func ForeachN(b []byte, size int) [][]byte {
|
||||
total := len(b)
|
||||
var index int
|
||||
var retArr [][]byte
|
||||
for {
|
||||
nextIndex := index + size
|
||||
if nextIndex < total {
|
||||
retArr = append(retArr, b[index:nextIndex])
|
||||
index = nextIndex
|
||||
} else {
|
||||
retArr = append(retArr, b[index:])
|
||||
break
|
||||
}
|
||||
}
|
||||
return retArr
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue