You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to shadowsocks/shadowsocks-org#28 , the SIP003 arguments are delivered by environment variables:
Mandatory: SS_REMOTE_HOST, SS_REMOTE_PORT, SS_LOCAL_HOST and SS_LOCAL_PORT
Optional: SS_PLUGIN_OPTIONS
Currently, a SIP003 "compatible" plugin program must able to read and grab its Process environment variables when being launched. Equivalent to the following console commands:
ss-win set the environment variables
set SS_REMOTE_HOST=1.2.3.4
set SS_REMOTE_PORT=9999
set SS_LOCAL_HOST=127.0.0.2
set SS_LOCAL_PORT=33333
set SS_PLUGIN_OPTIONS=foobar
Then ss-win launch the plugin
start someplugin.exe
If user has plugins whose implementation does not following SIP003 standard, user should have a work-around to give the in-line arguments when starting the plugin program. For instance:
ss-win set the environment variables
set SS_REMOTE_HOST=1.2.3.4
set SS_REMOTE_PORT=9999
set SS_LOCAL_HOST=127.0.0.2
set SS_LOCAL_PORT=33333
set SS_PLUGIN_OPTIONS=foobar
User typed the format and pattern for the in-line arguments wrapper
Just a brainstorm
According to shadowsocks/shadowsocks-org#28 , the SIP003 arguments are delivered by environment variables:
Mandatory:
SS_REMOTE_HOST
,SS_REMOTE_PORT
,SS_LOCAL_HOST
andSS_LOCAL_PORT
Optional:
SS_PLUGIN_OPTIONS
Currently, a SIP003 "compatible" plugin program must able to read and grab its Process environment variables when being launched. Equivalent to the following console commands:
If user has plugins whose implementation does not following SIP003 standard, user should have a work-around to give the in-line arguments when starting the plugin program. For instance:
which will be parsed into
It should expand the selection of third-party plug-in programs.
The text was updated successfully, but these errors were encountered: