mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 12:27:37 +03:00
Add shadowboom
This commit is contained in:
parent
5cc189a169
commit
f63868bf82
30 changed files with 1923 additions and 147 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue