| 1234567891011121314151617181920 |
- package dispatcher
- import (
- "context"
- "v2ray.com/core/app"
- "v2ray.com/core/transport/ray"
- )
- // Interface dispatch a packet and possibly further network payload to its destination.
- type Interface interface {
- DispatchToOutbound(ctx context.Context) ray.InboundRay
- }
- func FromSpace(space app.Space) Interface {
- if app := space.GetApplication((*Interface)(nil)); app != nil {
- return app.(Interface)
- }
- return nil
- }
|