2020-11-25 19:01:53 +08:00
|
|
|
package outbound
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
|
2020-12-04 09:36:16 +08:00
|
|
|
"github.com/xtls/xray-core/common/net"
|
|
|
|
|
"github.com/xtls/xray-core/common/protocol"
|
2020-11-25 19:01:53 +08:00
|
|
|
)
|
|
|
|
|
|
2025-09-15 21:31:27 +08:00
|
|
|
// As a stub command consumer.
|
2020-11-25 19:01:53 +08:00
|
|
|
func (h *Handler) handleCommand(dest net.Destination, cmd protocol.ResponseCommand) {
|
2025-09-15 21:31:27 +08:00
|
|
|
switch cmd.(type) {
|
2020-11-25 19:01:53 +08:00
|
|
|
default:
|
|
|
|
|
}
|
|
|
|
|
}
|