mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
41 lines
836 B
Go
41 lines
836 B
Go
package internet
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
|
|
"v2ray.com/core/common"
|
|
)
|
|
|
|
type PacketHeader interface {
|
|
Size() int32
|
|
Serialize([]byte)
|
|
}
|
|
|
|
func CreatePacketHeader(config interface{}) (PacketHeader, error) {
|
|
header, err := common.CreateObject(context.Background(), config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if h, ok := header.(PacketHeader); ok {
|
|
return h, nil
|
|
}
|
|
return nil, newError("not a packet header")
|
|
}
|
|
|
|
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
|
|
}
|
|
if a, ok := auth.(ConnectionAuthenticator); ok {
|
|
return a, nil
|
|
}
|
|
return nil, newError("not a ConnectionAuthenticator")
|
|
}
|