-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
http: Report errors reading discs #11700
Conversation
Firewalls can cause this, by opening a connection but never responding.
For more clarity when they can't load.
Continuing from the forum Debugger connected |
That really looks like there's a firewall blocking it, but maybe something is just making the connections really slow... -[Unknown] |
I have a firewall on my phone but I tried disabling it and I also allowed ppsspp in the windows firewall(I have only the windows firewall and the windows defender)but nothing changes As I said,I dont have any problems transfering files(fast)over wifi(making an ftp server on my phone and accessing it from my pc) |
The reason I suspect a firewall is that a typical behavior for firewalls is to accept connections on a port (e.g. 49845), but then ignore any data sent and never respond with any data. That matches the before and after pretty much exactly. If you navigate to this URL on your phone, does it start downloading cube.iso? http://192.168.1.11:49845/cube.iso The connection that is failing is the one from your phone (source) to your PC (destination.) So that would mean a PC firewall (or network device the PC is connected behind) would be getting in the way. If the download of cube.iso works fine (and fast) from your phone in Chrome, it probably means that some antivirus software or hardware is intercepting the request and stripping the range request, or something. I haven't seen this behavior before, but many routers do have protocol-aware protections. -[Unknown] |
Oops, I think I must've pressed something wrong in vi, there's a typo, fixed in 809c0f3. -[Unknown] |
When I try to download it(on my pc and phone),I get With this typo fixes,I am back to black screen and nothing happening and the debugger now just says that he found a game at that IP and that's all And also if I try to share my games on my phone,on my pc ppsspp is scanning endlessly but I can access the list on my pc with firefox but if I try to download something,I get the same error |
Oh sorry, yes. It will say that. But it means you're getting through the firewall. So it stays at a black screen without any timeout or error after 60 full seconds? Hm. -[Unknown] |
Yes,almost like ppsspp freezes...one time my phone was barely reacting to anything and the os ask me if I want to kill the process |
This also implements better error handling and some cleanup:
May help troubleshoot issues here: http://forums.ppsspp.org/showthread.php?tid=19752&pid=133054#pid133054
-[Unknown]