mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-03 07:56:42 -05:00
20 lines
442 B
Go
20 lines
442 B
Go
package dispatcher
|
|
|
|
import (
|
|
"v2ray.com/core/app"
|
|
"v2ray.com/core/proxy"
|
|
"v2ray.com/core/transport/ray"
|
|
)
|
|
|
|
// Interface dispatch a packet and possibly further network payload to its destination.
|
|
type Interface interface {
|
|
DispatchToOutbound(session *proxy.SessionInfo) ray.InboundRay
|
|
}
|
|
|
|
func FromSpace(space app.Space) Interface {
|
|
if app := space.GetApplication((*Interface)(nil)); app != nil {
|
|
return app.(Interface)
|
|
}
|
|
return nil
|
|
}
|