From 8af1b902a6ddd1aa7a1ccfbc88195b63dc912405 Mon Sep 17 00:00:00 2001 From: patterniha <71074308+patterniha@users.noreply.github.com> Date: Mon, 9 Jun 2025 18:27:58 +0330 Subject: [PATCH] Update inbound.md --- docs/en/config/inbound.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/en/config/inbound.md b/docs/en/config/inbound.md index 5f0014a..c562c50 100644 --- a/docs/en/config/inbound.md +++ b/docs/en/config/inbound.md @@ -94,7 +94,7 @@ Specifies the specific settings for port allocation when multiple ports are set ```json { "enabled": true, - "destOverride": ["http", "tls", "quic", "fakedns", "fakedns+others"], + "destOverride": ["http", "tls", "quic", "fakedns"], "metadataOnly": false, "domainsExcluded": [], "routeOnly": false @@ -105,15 +105,14 @@ Specifies the specific settings for port allocation when multiple ports are set Whether to enable traffic sniffing. -> `destOverride`: ["http" | "tls" | "quic" | "fakedns" | "fakedns+others" ] +> `destOverride`: ["http" | "tls" | "quic" | "fakedns" ] When the traffic is of a specified type, reset the destination of the current connection to the target address included in the list. -`["fakedns+others"]` is equivalent to `["http", "tls", "quic", "fakedns"]`, and when the IP address is in the FakeIP range but no domain records are hit, `http`, `tls`, and `quic` will be used for matching. This option is only effective when `metadataOnly` is set to `false`. > `metadataOnly`: true | false -When enabled, only use the connection's metadata to sniff the target address. In this case, sniffer other than `fakedns` (including `fakedns+others`) cannot be activated. +When enabled, only use the connection's metadata to sniff the target address. In this case, sniffer other than `fakedns` cannot be activated. If metadata-only is disabled, the client must send data before the proxy server actually establishes the connection. This behavior is incompatible with protocols that require the server to initiate the first message, such as the SMTP protocol.