1 # ip address of the server the proxy should connect to
4 # ip address the proxy should listen to for incoming connections
7 # maximum number of simultaneous connections
10 # user the proxy should run as
13 [ -n "$TARGET_IP" ] && OPTIONS="$OPTIONS -s $TARGET_IP"
14 [ -n "$LISTEN_IP" ] && OPTIONS="$OPTIONS -l $LISTEN_IP"
15 [ -n "$PROXY_CONN_MAX" ] && OPTIONS="$OPTIONS -c $PROXY_CONN_MAX"
16 [ -n "$PROXY_USER" ] && OPTIONS="$OPTIONS -u $PROXY_USER"