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.
19 lines
380 B
19 lines
380 B
import ProxyFilter as Filter
|
|
|
|
info = {
|
|
'type': 'vmess',
|
|
'server': "127.0.0.1",
|
|
'port': "12345",
|
|
'method': 'aes-128_gcm',
|
|
'id': 'eb6273f1-a98f-59f6-ba52-945f11dee100',
|
|
'stream': {
|
|
'type': 'grpc',
|
|
'service': 'test',
|
|
'secure': {}
|
|
}
|
|
|
|
}
|
|
|
|
status, data = Filter.filte(info, isExtra = True)
|
|
print(status)
|
|
print(data)
|
|
|