mirror of https://github.com/v2ray/v2ray-core
Darien Raymond
8 years ago
2 changed files with 19 additions and 32 deletions
@ -1,28 +0,0 @@
|
||||
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.") |
||||
} |
||||
} |
Loading…
Reference in new issue