[out] remove proxy from direct

This commit is contained in:
Alireza Ahmadi
2024-06-08 19:38:24 +02:00
parent 16203fdece
commit 17f1126c23
7 changed files with 0 additions and 16 deletions
@@ -20,16 +20,6 @@
v-model.number="override_port"> v-model.number="override_port">
</v-text-field> </v-text-field>
</v-col> </v-col>
<v-col cols="12" sm="6" md="4" v-if="direction == 'out'">
<v-select
:label="$t('types.direct.proxyProtocol')"
:items="[1,2]"
hide-details
clearable
@click:clear="delete data.proxy_protocol"
v-model.number="data.proxy_protocol">
</v-select>
</v-col>
</v-row> </v-row>
</v-card> </v-card>
</template> </template>
-1
View File
@@ -155,7 +155,6 @@ export default {
direct: { direct: {
overrideAddr: "Override Address", overrideAddr: "Override Address",
overridePort: "Override Port", overridePort: "Override Port",
proxyProtocol: "Proxy Protocol",
}, },
hy: { hy: {
obfs: "Obfuscated Password", obfs: "Obfuscated Password",
-1
View File
@@ -154,7 +154,6 @@ export default {
direct: { direct: {
overrideAddr: "جایگزین آدرس", overrideAddr: "جایگزین آدرس",
overridePort: "جایگزین پورت", overridePort: "جایگزین پورت",
proxyProtocol: "پروتکل پراکسی",
}, },
hy: { hy: {
obfs: "رمز مبهم کننده", obfs: "رمز مبهم کننده",
-1
View File
@@ -155,7 +155,6 @@ export default {
direct: { direct: {
overrideAddr: "Ghi đè Địa chỉ", overrideAddr: "Ghi đè Địa chỉ",
overridePort: "Ghi đè Cổng", overridePort: "Ghi đè Cổng",
proxyProtocol: "Giao thức Proxy",
}, },
hy: { hy: {
obfs: "Mật khẩu đã được Ẩn", obfs: "Mật khẩu đã được Ẩn",
-1
View File
@@ -155,7 +155,6 @@ export default {
direct: { direct: {
overrideAddr: "覆盖地址", overrideAddr: "覆盖地址",
overridePort: "覆盖端口", overridePort: "覆盖端口",
proxyProtocol: "代理协议",
}, },
hy: { hy: {
obfs: "混淆密码", obfs: "混淆密码",
-1
View File
@@ -156,7 +156,6 @@ export default {
direct: { direct: {
overrideAddr: "覆蓋地址", overrideAddr: "覆蓋地址",
overridePort: "覆蓋端口", overridePort: "覆蓋端口",
proxyProtocol: "代理協議",
}, },
hy: { hy: {
obfs: "混淆密碼", obfs: "混淆密碼",
-1
View File
@@ -57,7 +57,6 @@ export interface WgPeer {
export interface Direct extends OutboundBasics, Dial { export interface Direct extends OutboundBasics, Dial {
override_address?: string override_address?: string
override_port?: number override_port?: number
proxy_protocol?: 0 | 1 | 2
} }
export interface Block extends OutboundBasics {} export interface Block extends OutboundBasics {}