*) allowing crawler to process resources with statuscode 203

- this is needed if yacy is behind a second proxy 

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@316 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
theli 20 years ago
parent aae9a433a6
commit fafda068f9

@ -264,7 +264,7 @@ public final class plasmaCrawlWorker extends Thread {
// send request
httpc.response res = remote.GET(path, requestHeader);
if (res.status.startsWith("200")) {
if (res.status.startsWith("200") || res.status.startsWith("203")) {
// the transfer is ok
long contentLength = res.responseHeader.contentLength();

Loading…
Cancel
Save