mirror of https://github.com/v2ray/v2ray-core
21 lines
530 B
Go
21 lines
530 B
Go
package dispatcher
|
|
|
|
import (
|
|
"v2ray.com/core/app"
|
|
"v2ray.com/core/common/serial"
|
|
"v2ray.com/core/proxy"
|
|
"v2ray.com/core/transport/ray"
|
|
)
|
|
|
|
// PacketDispatcher dispatch a packet and possibly further network payload to its destination.
|
|
type PacketDispatcher interface {
|
|
DispatchToOutbound(session *proxy.SessionInfo) ray.InboundRay
|
|
}
|
|
|
|
func FromSpace(space app.Space) PacketDispatcher {
|
|
if app := space.(app.AppGetter).GetApp(serial.GetMessageType((*Config)(nil))); app != nil {
|
|
return app.(PacketDispatcher)
|
|
}
|
|
return nil
|
|
}
|