forked from bigbigbigboss/v2ray.fun-2
-
Notifications
You must be signed in to change notification settings - Fork 4
/
changestream.py
executable file
·64 lines (58 loc) · 2.22 KB
/
changestream.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import readjson
import writejson
from utils import is_number
# 读取配置文件信息
mystreamnetwork = str(readjson.ConfStreamNetwork)
if readjson.ConfStreamNetwork == "kcp":
if(readjson.ConfStreamHeader == "kcp srtp"):
mystreamnetwork = "mKCP 伪装 FaceTime通话"
elif(readjson.ConfStreamHeader == "kcp utp"):
mystreamnetwork = "mKCP 伪装 BT下载流量"
elif(readjson.ConfStreamHeader == "kcp wechat-video"):
mystreamnetwork = "mKCP 伪装 微信视频流量"
else:
mystreamnetwork = "mKCP"
elif readjson.ConfStreamNetwork == "http":
mystreamnetwork = "HTTP伪装"
elif readjson.ConfStreamNetwork == "ws":
mystreamnetwork = "WebSocket"
# 显示当前配置
print("当前传输方式为:%s") % mystreamnetwork
# 选择新的传输方式
print("请选择新的传输方式:")
print("1.普通TCP")
print("2.HTTP伪装")
print("3.WebSocket流量")
print("4.普通mKCP")
print("5.mKCP 伪装 FaceTime通话")
print("6.mKCP 伪装 BT下载流量")
print("7.mKCP 伪装 微信视频流量")
newstreamnetwork = raw_input()
if (not is_number(newstreamnetwork)):
print("请输入数字!")
exit
else:
if not (newstreamnetwork > 0 and newstreamnetwork < 8):
if(newstreamnetwork == "1"):
writejson.WriteStreamNetwork("tcp", "none")
elif(newstreamnetwork == "2"):
print("请输入你想要为伪装的域名(不不不需要http):")
host = raw_input()
writejson.WriteStreamNetwork("tcp", str(host))
elif(newstreamnetwork == "3"):
print("请输入你的服务器绑定域名(不不不需要http):")
host = raw_input()
writejson.WriteStreamNetwork("ws", str(host))
elif(newstreamnetwork == "4"):
writejson.WriteStreamNetwork("mkcp", "none")
elif(newstreamnetwork == "5"):
writejson.WriteStreamNetwork("mkcp", "kcp srtp")
elif(newstreamnetwork == "6"):
writejson.WriteStreamNetwork("mkcp", "kcp utp")
elif(newstreamnetwork == "7"):
writejson.WriteStreamNetwork("mkcp", "kcp wechat-video")
else:
print("请输入有效数字!")
exit