a message send failure is no reason to drop the SAM session

for style=stream, tell the client the stream failed, and kill the virtual connection..
for raw and repliable datagrams, just carry on our merry way
This commit is contained in:
jrandom
2004-06-20 01:49:07 +00:00
committed by zzz
parent 3e4b8c7dd4
commit 2a07ceba62

View File

@ -392,7 +392,7 @@ public class SAMv1Handler extends SAMHandler implements SAMRawReceiver, SAMDatag
if (!datagramSession.sendBytes(dest, data)) {
_log.error("DATAGRAM SEND failed");
return false;
return true;
}
return true;
@ -463,7 +463,7 @@ public class SAMv1Handler extends SAMHandler implements SAMRawReceiver, SAMDatag
if (!rawSession.sendBytes(dest, data)) {
_log.error("RAW SEND failed");
return false;
return true;
}
return true;
@ -556,7 +556,9 @@ public class SAMv1Handler extends SAMHandler implements SAMRawReceiver, SAMDatag
if (!streamSession.sendBytes(id, data)) {
_log.error("STREAM SEND failed");
return false;
boolean rv = writeString("STREAM CLOSED RESULT=CANT_REACH_PEER ID=" + id + " MESSAGE=\"Send of " + size + " bytes failed\"\n");
streamSession.closeConnection(id);
return rv;
}
return true;