mirror of https://github.com/dnomd343/ProxyC
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
744 B
34 lines
744 B
#!/usr/bin/env python
|
|
|
|
from pprint import pprint
|
|
from Basis.Filter import Filter
|
|
from Basis.Filter import filterObject
|
|
from Filter.Shadowsocks import ssObject
|
|
from Filter.ShadowsocksR import ssrObject
|
|
|
|
# pprint(ssObject, sort_dicts = False)
|
|
# pprint(ssrObject, sort_dicts = False)
|
|
# pprint(filterObject, sort_dicts = False)
|
|
|
|
ssProxy = {
|
|
'server': '1.1.1.1',
|
|
'port': '12345',
|
|
'method': 'none',
|
|
'passwd': 'dnomd343',
|
|
'plugin': {
|
|
'type': 'obfs'
|
|
}
|
|
}
|
|
|
|
ssrProxy = {
|
|
'server': '1.1.1.1',
|
|
'port': 12345,
|
|
'method': 'table',
|
|
'passwd': 'dnomd343',
|
|
'protocol': 'auth_chain-a',
|
|
'obfs': 'http_post'
|
|
}
|
|
|
|
# ret = Filter(ssProxy, ssObject)
|
|
ret = Filter(ssrProxy, ssrObject)
|
|
pprint(ret, sort_dicts = False)
|
|
|