2016-01-31 11:01:28 -05:00
|
|
|
package dispatcher
|
|
|
|
|
|
|
|
import (
|
2017-01-26 14:46:44 -05:00
|
|
|
"context"
|
|
|
|
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/app"
|
2017-02-03 16:35:09 -05:00
|
|
|
"v2ray.com/core/common/net"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/transport/ray"
|
2016-01-31 11:01:28 -05:00
|
|
|
)
|
|
|
|
|
2017-01-13 07:53:44 -05:00
|
|
|
// Interface dispatch a packet and possibly further network payload to its destination.
|
|
|
|
type Interface interface {
|
2017-02-03 16:35:09 -05:00
|
|
|
Dispatch(ctx context.Context, dest net.Destination) (ray.InboundRay, error)
|
2016-01-31 11:01:28 -05:00
|
|
|
}
|
2017-01-06 09:32:36 -05:00
|
|
|
|
2017-01-13 07:53:44 -05:00
|
|
|
func FromSpace(space app.Space) Interface {
|
|
|
|
if app := space.GetApplication((*Interface)(nil)); app != nil {
|
|
|
|
return app.(Interface)
|
2017-01-06 09:32:36 -05:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|