-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
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
有的网站使用cow还是打不开 #492
Comments
http://jixiuf.github.io/about/ |
可以试试删除 stat.txt 文件,或者查找下这个文件内容,找到这个域名编辑掉。 Jason [email protected] 於 2016年8月22日 週一 上午10:33寫道:
|
谢谢你的回复,我现在用meow已经没有出现这种情况了,算是对cow的改良吧。 |
了解。 Jason [email protected] 於 2016年8月22日 週一 下午9:26寫道:
|
希望是个例吧,不过我今天还是遇见好几个网页都出现这种网页了。 |
如果合并 #465 这个代码,应该可以解决这个问题 |
你有对于win的修复这个问题的成品吗?我也不会合并什么代码 |
只有 Win32 版。。 |
谢谢你,请问你这个是你自己重新编译过的吗?这个不是0.9.6版本的吧?因为他们说0.9.6版的没有这个问题,还有这个32位的在32位和64位系统上都可以使用对吧。 |
额,这个问题存在时间很长了,一直没解决,我就自学了Go语言,自己解决了,我是这样写的 func isErrConnReset(err error) bool {
// fmt.Printf("calling isErrConnReset for err type: %v Error() %s\n",
// reflect.TypeOf(err), err.Error())
if ne, ok := err.(*net.OpError); ok {
// fmt.Println("isErrConnReset net.OpError.Err type:", reflect.TypeOf(ne))
if se, seok := ne.Err.(*os.SyscallError); seok {
return se.Err == syscall.WSAECONNRESET || se.Err == syscall.ECONNRESET
}
if errno, enok := ne.Err.(syscall.Errno); enok {
// I got these number by print. Only tested on XP.
// fmt.Printf("isErrConnReset errno: %d\n", errno)
return errno == 64 || errno == 10054
}
}
return false
} 跟上面我提到的那个代码不一样,不过效果应该是一样的。。。 我用Go1.7 更新了下编译,速度应该是更快了 |
你看的是 meow 啊,cow 不支持 |
哦,搞错了,那你觉得meow好还是cow好呢?我怎么觉得cow有点影响网速呢?你能解决meow那个问题吗?#495 |
所以如果使用你刚才给我的那个的话,我就可以再配置文件里面加上像meow那个支持https的两行配置代码了是吧? |
哪里有meow的地址?我想看看 |
@Jason4774 多谢 |
我之前使用自动切换列表https://raw.githubusercontent.com/gfwlist/gfwlist/master/gfwlist.txt
http://jixiuf.github.io/blog/%E7%94%A8cow-%E7%BF%BB%E5%A2%99%E7%9A%84%E9%85%8D%E7%BD%AE/
这个网站如果使用自动切换列表,那么是这样的:
如果是使用cow,那么是这样的:
如果是全局代理,那么才正常:
我 已经发现好几个网站都是这样了,但是出现第二张图片那也就说明其实全局是支持的,不过不能直接使用cow打开这种网站,该怎么解决呢?谢谢。
The text was updated successfully, but these errors were encountered: