From 024c258d9229b9c374d22761dce82099af499489 Mon Sep 17 00:00:00 2001 From: Andrey Petelin Date: Mon, 20 Oct 2025 20:02:34 +0500 Subject: [PATCH] chore: rename SOCKS5 outbound function/comments to generic SOCKS --- podkop/files/usr/lib/sing_box_config_manager.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/podkop/files/usr/lib/sing_box_config_manager.sh b/podkop/files/usr/lib/sing_box_config_manager.sh index ce66424..87618aa 100644 --- a/podkop/files/usr/lib/sing_box_config_manager.sh +++ b/podkop/files/usr/lib/sing_box_config_manager.sh @@ -449,12 +449,12 @@ sing_box_cm_add_direct_outbound() { } ####################################### -# Add a SOCKS5 outbound to the outbounds section of a sing-box JSON configuration. +# Add a SOCKS outbound to the outbounds section of a sing-box JSON configuration. # Arguments: # config: JSON configuration (string) # tag: string, identifier for the outbound -# server_address: string, IP address or hostname of the SOCKS5 server -# server_port: number, port of the SOCKS5 server +# server_address: string, IP address or hostname of the SOCKS server +# server_port: number, port of the SOCKS server # version: string, optional SOCKS version # username: string, optional username for authentication # password: string, optional password for authentication @@ -463,9 +463,9 @@ sing_box_cm_add_direct_outbound() { # Outputs: # Writes updated JSON configuration to stdout # Example: -# CONFIG=$(sing_box_cm_add_socks5_outbound "$CONFIG" "socks5-out" "192.168.1.10" 1080) +# CONFIG=$(sing_box_cm_add_socks_outbound "$CONFIG" "socks5-out" "192.168.1.10" 1080) ####################################### -sing_box_cm_add_socks5_outbound() { +sing_box_cm_add_socks_outbound() { local config="$1" local tag="$2" local server_address="$3"