mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Improve buffer write string
Both []byte(string) and copy([]byte, string) are zero-alloc for this operation, but copy([]byte, string) is faster since Go supports it as a feature.
This commit is contained in:
parent
bc788b0271
commit
439ecb1a20
2 changed files with 11 additions and 3 deletions
|
@ -229,8 +229,16 @@ func (b *Buffer) WriteRune(s rune) (int, error) {
|
|||
return b.Write([]byte{byte(s)})
|
||||
}
|
||||
|
||||
func (b *Buffer) WriteString(s string) (int, error) {
|
||||
return b.Write([]byte(s))
|
||||
func (b *Buffer) WriteString(s string) (n int, err error) {
|
||||
if len(s) == 0 {
|
||||
return
|
||||
}
|
||||
if b.IsFull() {
|
||||
return 0, io.ErrShortBuffer
|
||||
}
|
||||
n = copy(b.data[b.end:], s)
|
||||
b.end += n
|
||||
return
|
||||
}
|
||||
|
||||
func (b *Buffer) WriteZero() error {
|
||||
|
|
|
@ -200,5 +200,5 @@ func WriteSocksString(buffer *buf.Buffer, str string) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return rw.WriteString(buffer, str)
|
||||
return common.Error(buffer.WriteString(str))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue