Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/web/html
diff options
context:
space:
mode:
authormhsanaei <ho3ein.sanaei@gmail.com>2024-09-16 11:30:51 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2024-09-16 11:30:51 +0300
commit176ab5f48e883ab65c124913acb949fe7f172429 (patch)
treec45be35bdbe4434af680c8aa64ff804bc7ae831b /web/html
parent9c4fa239312c3750e6c8d4409055acf1c500199c (diff)
New - DNS Outbound (nonIPQuery, blockTypes)
Diffstat (limited to 'web/html')
-rw-r--r--web/html/xui/form/outbound.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html
index 081c6fd7..84882498 100644
--- a/web/html/xui/form/outbound.html
+++ b/web/html/xui/form/outbound.html
@@ -75,6 +75,14 @@
<a-select-option v-for="s in ['udp','tcp']" :value="s">[[ s ]]</a-select-option>
</a-select>
</a-form-item>
+ <a-form-item label='non-IP queries'>
+ <a-select v-model="outbound.settings.nonIPQuery" :dropdown-class-name="themeSwitcher.currentTheme">
+ <a-select-option v-for="s in ['drop','skip']" :value="s">[[ s ]]</a-select-option>
+ </a-select>
+ </a-form-item>
+ <a-form-item v-if="outbound.settings.nonIPQuery === 'skip'" label='Block Types' >
+ <a-input v-model.number="outbound.settings.blockTypes"></a-input>
+ </a-form-item>
</template>
<!-- wireguard settings -->