mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
533 B
29 lines
533 B
package internet
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
|
|
"context"
|
|
|
|
"v2ray.com/core/common"
|
|
)
|
|
|
|
type ConnectionAuthenticator interface {
|
|
Client(net.Conn) net.Conn
|
|
Server(net.Conn) net.Conn
|
|
}
|
|
|
|
func CreateConnectionAuthenticator(config interface{}) (ConnectionAuthenticator, error) {
|
|
auth, err := common.CreateObject(context.Background(), config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
switch a := auth.(type) {
|
|
case ConnectionAuthenticator:
|
|
return a, nil
|
|
default:
|
|
return nil, errors.New("Internet: Not a ConnectionAuthenticator.")
|
|
}
|
|
}
|