In RTSPServer::incomingRequestHandler1() conditional "if (bytesRead
<= 0 || (unsigned)bytesRead >= fRequestSpaceRemaining)"
Q: Is it really a failure if the number of bytes read == the amount
of space available?
Yes, because there would then be no room for us to add a trailing
'\0' character
In RTSPServer::incomingRequestHandler1() conditional "if (bytesRead <= 0
|| (unsigned)bytesRead >= fRequestSpaceRemaining)"
Q: Is it really a failure if the number of bytes read == the amount of
space available?
I was thinking that it would be because we wouldn't know if there was more
to read