mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 04:47:40 +03:00
Add trojan-local and server command
This commit is contained in:
parent
c66f869581
commit
01eeea9a2e
12 changed files with 634 additions and 48 deletions
|
@ -94,6 +94,9 @@ func (b *Buffer) Write(data []byte) (n int, err error) {
|
|||
if b.IsFull() {
|
||||
return 0, io.ErrShortBuffer
|
||||
}
|
||||
if b.end+len(data) > b.Cap() {
|
||||
panic("buffer overflow")
|
||||
}
|
||||
n = copy(b.data[b.end:], data)
|
||||
b.end += n
|
||||
return
|
||||
|
@ -102,7 +105,7 @@ func (b *Buffer) Write(data []byte) (n int, err error) {
|
|||
func (b *Buffer) ExtendHeader(size int) []byte {
|
||||
if b.start >= size {
|
||||
b.start -= size
|
||||
return b.data[b.start-size : b.start]
|
||||
return b.data[b.start : b.start+size]
|
||||
} else {
|
||||
/*offset := size - b.start
|
||||
end := b.end + size
|
||||
|
@ -326,7 +329,7 @@ func (b Buffer) Len() int {
|
|||
}
|
||||
|
||||
func (b Buffer) Cap() int {
|
||||
return cap(b.data)
|
||||
return len(b.data)
|
||||
}
|
||||
|
||||
func (b Buffer) Bytes() []byte {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue