diff options
| author | Shishkevich D. <135337715+shishkevichd@users.noreply.github.com> | 2025-03-09 07:28:12 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-09 07:28:12 +0300 |
| commit | c49ec9a74cf1c407cbe872355f1e2ac03a8e3080 (patch) | |
| tree | d1945e4821b7682a2fd171b5fadf106d2f920f9e /web/html/xui/form/outbound.html | |
| parent | a0dd101d9778f11dfe4866e7bc71c5119bcbf6fa (diff) | |
chore: add new grpc params for outbound (#2744)
Diffstat (limited to 'web/html/xui/form/outbound.html')
| -rw-r--r-- | web/html/xui/form/outbound.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/web/html/xui/form/outbound.html b/web/html/xui/form/outbound.html index d4e9e5f6..93b0a94f 100644 --- a/web/html/xui/form/outbound.html +++ b/web/html/xui/form/outbound.html @@ -352,6 +352,21 @@ <a-form-item label='Multi Mode'> <a-switch v-model="outbound.stream.grpc.multiMode"></a-switch> </a-form-item> + <a-form-item label="User Agent"> + <a-input v-model.trim="outbound.stream.grpc.user_agent"></a-input> + </a-form-item> + <a-form-item label="Idle Timeout"> + <a-input-number v-model.number="outbound.stream.grpc.idle_timeout"></a-input-number> + </a-form-item> + <a-form-item label="Health Check Timeout"> + <a-input-number v-model.number="outbound.stream.grpc.health_check_timeout"></a-input-number> + </a-form-item> + <a-form-item label="Permit Without Stream"> + <a-switch v-model="outbound.stream.grpc.permit_without_stream"></a-switch> + </a-form-item> + <a-form-item label="Initial Window Size"> + <a-input-number v-model.number="outbound.stream.grpc.initial_windows_size"></a-input-number> + </a-form-item> </template> <!-- httpupgrade --> |
