Add shadowboom

This commit is contained in:
世界 2022-02-02 20:27:50 +08:00
parent 5cc189a169
commit f63868bf82
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
30 changed files with 1923 additions and 147 deletions

View file

@ -1,8 +1,9 @@
package shadowsocks
import (
"bytes"
"io"
"sing/common/buf"
)
func init() {
@ -29,10 +30,10 @@ func (c *NoneCipher) NewDecryptionReader(_ []byte, _ []byte, reader io.Reader) (
return reader, nil
}
func (c *NoneCipher) EncodePacket([]byte, *bytes.Buffer) error {
func (c *NoneCipher) EncodePacket([]byte, *buf.Buffer) error {
return nil
}
func (c *NoneCipher) DecodePacket([]byte, *bytes.Buffer) error {
func (c *NoneCipher) DecodePacket([]byte, *buf.Buffer) error {
return nil
}