|
@@ -23,33 +23,32 @@ udpxy_parse() {
|
23
|
23
|
|
24
|
24
|
config_get_bool cfg_verbose $cfg 'verbose' 0
|
25
|
25
|
config_get_bool cfg_status $cfg 'status' 1
|
26
|
|
- config_get cfg_bind $cfg 'bind' '0.0.0.0'
|
|
26
|
+ config_get cfg_bind $cfg 'bind'
|
27
|
27
|
config_get cfg_port $cfg 'port' '4022'
|
28
|
|
- config_get cfg_source $cfg 'source' '0.0.0.0'
|
29
|
|
- config_get cfg_max_clients $cfg 'max_clients' '3'
|
30
|
|
- config_get cfg_log_file $cfg 'log_file' '/var/log/udpxy'
|
31
|
|
- config_get cfg_buffer_size $cfg 'buffer_size' '2048'
|
32
|
|
- config_get cfg_buffer_messages $cfg 'buffer_messages' '1'
|
33
|
|
- config_get cfg_buffer_time $cfg 'buffer_time' '1'
|
34
|
|
- config_get cfg_nice_increment $cfg 'nice_increment' '0'
|
35
|
|
- config_get cfg_mcsub_renew $cfg 'mcsub_renew' 0
|
|
28
|
+ config_get cfg_source $cfg 'source'
|
|
29
|
+ config_get cfg_max_clients $cfg 'max_clients'
|
|
30
|
+ config_get cfg_log_file $cfg 'log_file'
|
|
31
|
+ config_get cfg_buffer_size $cfg 'buffer_size'
|
|
32
|
+ config_get cfg_buffer_messages $cfg 'buffer_messages'
|
|
33
|
+ config_get cfg_buffer_time $cfg 'buffer_time'
|
|
34
|
+ config_get cfg_nice_increment $cfg 'nice_increment'
|
|
35
|
+ config_get cfg_mcsub_renew $cfg 'mcsub_renew'
|
36
|
36
|
|
37
|
37
|
procd_open_instance
|
38
|
38
|
|
39
|
39
|
procd_set_param command /usr/bin/udpxy
|
40
|
|
- procd_append_param command -T
|
|
40
|
+ procd_append_param command -T -p $cfg_port
|
41
|
41
|
[ "$cfg_verbose" -eq 1 ] && procd_append_param command -v
|
42
|
42
|
[ "$cfg_status" -eq 1 ] && procd_append_param command -S
|
43
|
|
- procd_append_param command -a $cfg_bind
|
44
|
|
- procd_append_param command -p $cfg_port
|
45
|
|
- procd_append_param command -m $cfg_source
|
46
|
|
- procd_append_param command -c $cfg_max_clients
|
47
|
|
- procd_append_param command -l $cfg_log_file
|
48
|
|
- [ "$cfg_nice_increment" -ge 4096 ] && procd_append_param command -B $cfg_buffer_size
|
49
|
|
- procd_append_param command -R $cfg_buffer_messages
|
50
|
|
- procd_append_param command -H $cfg_buffer_time
|
51
|
|
- [ "$cfg_nice_increment" -ne 0 ] && procd_append_param command -n $cfg_nice_increment
|
52
|
|
- procd_append_param command -M $cfg_mcsub_renew
|
|
43
|
+ [ ! -z "$cfg_bind" ] && procd_append_param command -a $cfg_bind
|
|
44
|
+ [ ! -z "$cfg_source" ] && procd_append_param command -m $cfg_source
|
|
45
|
+ [ ! -z "$cfg_max_clients" ] && procd_append_param command -c $cfg_max_clients
|
|
46
|
+ [ ! -z "$cfg_log_file" ] && procd_append_param command -l $cfg_log_file
|
|
47
|
+ [ ! -z "$cfg_buffer_size" ] && procd_append_param command -B $cfg_buffer_size
|
|
48
|
+ [ ! -z "$cfg_buffer_messages" ] && procd_append_param command -R $cfg_buffer_messages
|
|
49
|
+ [ ! -z "$cfg_buffer_time" ] && procd_append_param command -H $cfg_buffer_time
|
|
50
|
+ [ ! -z "$cfg_nice_increment" ] && procd_append_param command -n $cfg_nice_increment
|
|
51
|
+ [ ! -z "$cfg_mcsub_renew" ] && procd_append_param command -M $cfg_mcsub_renew
|
53
|
52
|
|
54
|
53
|
procd_set_param respawn
|
55
|
54
|
procd_close_instance
|