debugger-zhang
debugger-zhang
代码在https://github.com/SeaHOH/GotoX/blob/master/local/common/net.py#L240 问题是如果你使用类似WireGuard的软件作为tunnel broker,这些软件可能会给本机分配一个私有IP,但是那些网络是可以上网的,建议把这个判断删掉,然后试验一下是否能真的访问IPv6服务
增加以下常见域名: ``` t.co t.me telegram.org imgur.com .imgur.com i.stack.imgur.com .archive.org # 注意此条是通配规则,和archive.org不同 ```
以下域名因为托管在Cloudflare上,使用CFW访问会出错: discord.com、discord.gg、discordapp.com、discordapp.net 目前我的hack是: (1)https://github.com/SeaHOH/GotoX/blob/dbd629027d6c019f38a9fca5702194a113fba717/local/ProxyHandler.py#L562 ,前面加上: ``` if ("discord.com" in self.url or "discord.gg" in self.url or "discordapp.com" in self.url or "discordapp.net" in self.url): continue ``` (2)https://github.com/SeaHOH/GotoX/blob/dbd629027d6c019f38a9fca5702194a113fba717/local/ProxyHandler.py#L1388 ,前面加上: ``` if ("discord.com" in...
Currently code has several usages of [syscall.EAGAIN](https://github.com/search?q=repo%3A3d0c%2Fgmf%20syscall&type=code). However, if you compile the project in MSYS2 MinGW (see [here](https://github.com/faiface/pixel/wiki/Building-Pixel-on-Windows) for detail), the value of syscall.EAGAIN will be 536870918 but libavcodec still...
### Describe the issue See here: https://github.com/boto/botocore/blob/8b29f58b6f09935e5ec83f4adade36e81643d32f/botocore/data/s3/2006-03-01/examples-1.json#L1645 This renders: ```python response = client.put_object( Body='c:\HappyFace.jpg', Bucket='examplebucket', Key='HappyFace.jpg', Tagging='key1=value1&key2=value2', ) print(response) ``` The description is "The following example uploads an object. The...
**What package is missing from Amazon Linux 2023? Please describe and include package name.** axel **Is this an update to existing package or new package request?** new package request **Is...
Please note this tool does not works as-is for bodies larger than 64KB. To fix it, add the following lines after https://github.com/ikruglov/slapper/blob/master/slapper.go#L135: ```go buf := make([]byte, 0, 64*1024) scanner.Buffer(buf, 1024*1024)...