dispatcher.go 238 B

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