mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
37 lines
852 B
Go
37 lines
852 B
Go
package internet
|
|
|
|
import (
|
|
"net"
|
|
|
|
"v2ray.com/core/common"
|
|
)
|
|
|
|
type ConnectionAuthenticator interface {
|
|
Client(net.Conn) net.Conn
|
|
Server(net.Conn) net.Conn
|
|
}
|
|
|
|
type ConnectionAuthenticatorFactory interface {
|
|
Create(interface{}) ConnectionAuthenticator
|
|
}
|
|
|
|
var (
|
|
connectionAuthenticatorCache = make(map[string]ConnectionAuthenticatorFactory)
|
|
)
|
|
|
|
func RegisterConnectionAuthenticator(name string, factory ConnectionAuthenticatorFactory) error {
|
|
if _, found := connectionAuthenticatorCache[name]; found {
|
|
return common.ErrDuplicatedName
|
|
}
|
|
connectionAuthenticatorCache[name] = factory
|
|
return nil
|
|
}
|
|
|
|
func CreateConnectionAuthenticator(name string, config interface{}) (ConnectionAuthenticator, error) {
|
|
factory, found := connectionAuthenticatorCache[name]
|
|
if !found {
|
|
return nil, common.ErrObjectNotFound
|
|
}
|
|
return factory.Create(config), nil
|
|
}
|