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.
24 lines
451 B
24 lines
451 B
import time
|
|
|
|
import ProxyBuilder as Builder
|
|
import ProxyDecoder as Decoder
|
|
import ProxyFilter as Filter
|
|
import Check as Checker
|
|
|
|
info = {
|
|
'type': 'brook',
|
|
'server': '127.0.0.1',
|
|
'port': '12345',
|
|
'passwd': 'dnomd343',
|
|
'ws': {
|
|
'host': 'local.343.re',
|
|
'path': '/test',
|
|
'secure': {
|
|
'verify': False
|
|
}
|
|
}
|
|
}
|
|
|
|
status, ret = Filter.filte(info)
|
|
print(status)
|
|
print(ret)
|
|
|