mirror of https://github.com/XTLS/Xray-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.
41 lines
894 B
41 lines
894 B
package internet |
|
|
|
import ( |
|
"context" |
|
"net" |
|
|
|
"github.com/xtls/xray-core/common" |
|
"github.com/xtls/xray-core/common/errors" |
|
) |
|
|
|
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, errors.New("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, errors.New("not a ConnectionAuthenticator") |
|
}
|
|
|