1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-02 23:47:07 -05:00

fix type def

This commit is contained in:
Darien Raymond 2016-11-01 00:42:44 +01:00
parent 72339a3509
commit 187688cacb
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -25,8 +25,8 @@ func (this NoOpAuthenticatorFactory) Create(config interface{}) internet.Authent
type NoOpConnectionAuthenticator struct{}
func (NoOpConnectionAuthenticator) Open(reader io.Reader) (bool, io.Reader) {
return true, reader
func (NoOpConnectionAuthenticator) Open(reader io.Reader) (io.Reader, error) {
return reader, nil
}
func (NoOpConnectionAuthenticator) Seal(writer io.Writer) io.Writer {