I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit bb082c35 authored by zzz's avatar zzz
Browse files

recognize more error codes

parent f7577e7d
No related branches found
No related tags found
No related merge requests found
...@@ -904,10 +904,14 @@ public class EepGet { ...@@ -904,10 +904,14 @@ public class EepGet {
_keepFetching = false; _keepFetching = false;
_notModified = true; _notModified = true;
return; return;
case 400: // bad req
case 401: // server auth case 401: // server auth
case 403: // bad req case 403: // bad req
case 404: // not found case 404: // not found
case 408: // req timeout
case 409: // bad addr helper case 409: // bad addr helper
case 414: // URI too long
case 431: // headers too long
case 503: // no outproxy case 503: // no outproxy
_transferFailed = true; _transferFailed = true;
if (_alreadyTransferred > 0 || !_shouldWriteErrorToOutput) { if (_alreadyTransferred > 0 || !_shouldWriteErrorToOutput) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment