mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-12-12 04:34:41 +04:00
https://github.com/XTLS/Xray-core/pull/5124#issuecomment-3281091009 Fixes https://github.com/XTLS/Xray-core/pull/5124#pullrequestreview-3218097421
15 lines
269 B
Go
15 lines
269 B
Go
package outbound
|
|
|
|
import (
|
|
|
|
"github.com/xtls/xray-core/common/net"
|
|
"github.com/xtls/xray-core/common/protocol"
|
|
)
|
|
|
|
// As a stub command consumer.
|
|
func (h *Handler) handleCommand(dest net.Destination, cmd protocol.ResponseCommand) {
|
|
switch cmd.(type) {
|
|
default:
|
|
}
|
|
}
|