command.go 269 B

1234567891011121314
  1. package outbound
  2. import (
  3. "github.com/xtls/xray-core/common/net"
  4. "github.com/xtls/xray-core/common/protocol"
  5. )
  6. // As a stub command consumer.
  7. func (h *Handler) handleCommand(dest net.Destination, cmd protocol.ResponseCommand) {
  8. switch cmd.(type) {
  9. default:
  10. }
  11. }