We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi.
root@AR:/obfstunnel# ls COPYING obfstunnel.c README.md udpsession.c Makefile obfstunnel.h README.zh_CN udpsession.h root@AR:/obfstunnel# make gcc obfstunnel.c udpsession.c -o obfstunnel -O2 -Wall obfstunnel.c: 在函数‘ot_tunneling_tcp_server’中: obfstunnel.c:397:13: 警告:变量‘writeb’被设定但未被使用 [-Wunused-but-set-variable] int readb, writeb; ^ obfstunnel.c: 在函数‘ot_accept_client’中: obfstunnel.c:661:6: 警告:变量‘flags’被设定但未被使用 [-Wunused-but-set-variable] int flags; ^ root@AR:/obfstunnel# ls COPYING obfstunnel obfstunnel.h README.zh_CN udpsession.h Makefile obfstunnel.c README.md udpsession.c root@AR:/obfstunnel#
The text was updated successfully, but these errors were encountered:
完全没关系,可以正常使用。 这只是因为代码中遗留了一些没有使用的变量而已,改天我清理一下
Sorry, something went wrong.
另外我看到你的文章https://www.gsea.com.cn/blog/topic/traffic-obsfucate-patch-for-openvpn/ , 你所说的参数: obfs-salt theansweris42 obfs-padlen 20 mssfix 1386 是分别添加在服务器端和客户端的配置文件里吗?
看到有obfs的字眼,意思是服务器端和客户端都各需安装obfsproxy吗?
那个是 openvpn 的补丁,和这个项目无关的,和obfsproxy 也无关
回到第一个问题,是的,服务端和客户端都要添加 2016年3月23日 下午11:55,"luckypoem" [email protected]写道:
另外我看到你的文章 https://www.gsea.com.cn/blog/topic/traffic-obsfucate-patch-for-openvpn/ , 你所说的参数: obfs-salt theansweris42 obfs-padlen 20 mssfix 1386 是分别添加在服务器端和客户端的配置文件里吗? 看到有obfs的字眼,意思是服务器端和客户端都各需安装obfsproxy吗? — You are receiving this because you commented. Reply to this email directly or view it on GitHub #3 (comment)
另外我看到你的文章 https://www.gsea.com.cn/blog/topic/traffic-obsfucate-patch-for-openvpn/ , 你所说的参数: obfs-salt theansweris42
obfs-padlen 20
mssfix 1386 是分别添加在服务器端和客户端的配置文件里吗?
— You are receiving this because you commented. Reply to this email directly or view it on GitHub #3 (comment)
No branches or pull requests
hi.
root@AR:
/obfstunnel# ls/obfstunnel# makeCOPYING obfstunnel.c README.md udpsession.c
Makefile obfstunnel.h README.zh_CN udpsession.h
root@AR:
gcc obfstunnel.c udpsession.c -o obfstunnel -O2 -Wall
obfstunnel.c: 在函数‘ot_tunneling_tcp_server’中:
obfstunnel.c:397:13: 警告:变量‘writeb’被设定但未被使用 [-Wunused-but-set-variable]
int readb, writeb;
^
obfstunnel.c: 在函数‘ot_accept_client’中:
obfstunnel.c:661:6: 警告:变量‘flags’被设定但未被使用 [-Wunused-but-set-variable]
int flags;
^
root@AR:
/obfstunnel# ls/obfstunnel#COPYING obfstunnel obfstunnel.h README.zh_CN udpsession.h
Makefile obfstunnel.c README.md udpsession.c
root@AR:
The text was updated successfully, but these errors were encountered: