1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-24 02:06:59 -05:00
v2fly/transport/internet/authenticators/noop/noop.go

46 lines
1.1 KiB
Go
Raw Normal View History

package noop
import (
2016-10-31 17:26:46 -04:00
"io"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/common/alloc"
2016-10-16 08:22:21 -04:00
"v2ray.com/core/common/loader"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/transport/internet"
)
type NoOpAuthenticator struct{}
func (this NoOpAuthenticator) Overhead() int {
return 0
}
func (this NoOpAuthenticator) Open(payload *alloc.Buffer) bool {
return true
}
func (this NoOpAuthenticator) Seal(payload *alloc.Buffer) {}
type NoOpAuthenticatorFactory struct{}
2016-09-21 08:39:07 -04:00
func (this NoOpAuthenticatorFactory) Create(config interface{}) internet.Authenticator {
return NoOpAuthenticator{}
}
2016-10-31 17:26:46 -04:00
type NoOpConnectionAuthenticator struct{}
2016-10-31 19:42:44 -04:00
func (NoOpConnectionAuthenticator) Open(reader io.Reader) (io.Reader, error) {
return reader, nil
2016-10-31 17:26:46 -04:00
}
func (NoOpConnectionAuthenticator) Seal(writer io.Writer) io.Writer {
return writer
}
type NoOpConnectionAuthenticatorFactory struct{}
func (NoOpConnectionAuthenticatorFactory) Create(config interface{}) internet.ConnectionAuthenticator {
return NoOpConnectionAuthenticator{}
}
func init() {
2016-10-16 08:22:21 -04:00
internet.RegisterAuthenticator(loader.GetType(new(Config)), NoOpAuthenticatorFactory{})
2016-10-31 17:26:46 -04:00
internet.RegisterConnectionAuthenticator(loader.GetType(new(Config)), NoOpConnectionAuthenticatorFactory{})
}