| 12345678910111213141516 | 
							- package dispatcher
 
- import (
 
- 	"v2ray.com/core/app"
 
- 	"v2ray.com/core/proxy"
 
- 	"v2ray.com/core/transport/ray"
 
- )
 
- const (
 
- 	APP_ID = app.ID(1)
 
- )
 
- // PacketDispatcher dispatch a packet and possibly further network payload to its destination.
 
- type PacketDispatcher interface {
 
- 	DispatchToOutbound(meta *proxy.InboundHandlerMeta, session *proxy.SessionInfo) ray.InboundRay
 
- }
 
 
  |