dispatcher.go 297 B

1234567891011121314
  1. package udp
  2. import (
  3. "context"
  4. "github.com/v2fly/v2ray-core/v5/common"
  5. "github.com/v2fly/v2ray-core/v5/common/buf"
  6. "github.com/v2fly/v2ray-core/v5/common/net"
  7. )
  8. type DispatcherI interface {
  9. common.Closable
  10. Dispatch(ctx context.Context, destination net.Destination, payload *buf.Buffer)
  11. }