Hi.
When I use RTSPClient, I want to know call timing of resetTCPSocket().(I
would like to log and notify other process). But, I can't do because
resetTCPSockets() is not virtual function and this is private.
So, I want to modify RTSPClinet::resetTCPSockets() to virtual function and
private to
Thank you for your comments.
ChaSeop Im
___
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel
HI.
I think that RTSPClient is occurred crash in handleRequestBytes.
handleRequestBytes could called resendCommand when received 401 response
code.
resendCommand call sendRequest and sendRequest checks openConnection.
When openConnection returned -1, sendRequest delete request(this is
foundR
Hi.
I found crash when RTSPServer is closed.
I found that RTSPServer::~RTSPServer added some code about closing
fTCPStreamingDatabase in last version.
The code occurred problem, because deleted fTCPStreamingDatabase is used
when closing client connection objects.
(RTSPServer::RTSPClientCo
Hi.
I can't compile RTCP.cpp in Windows(because in Windows, it's not have
snprintf.).
When I used strncpy instead of snprintf, it's compiled.
snprintf(nameBytes, 4, "%s", name); => strncpy(nameBytes, name, 4);
thanks.
___
live-devel mailing lis
Sorry.
Line numbers of RTSPClient::handleResponseBytes are 1467 ~ 1751.
1547 ~ 1549 are numbers that I think buggy code line.
1547 ~ 1579 code is
lineStart = nextLineStart;
nextLineStart = getLine(lineStart);
} while (lineStart[0] == '\0'); // skip over any blank
Hi.
I think there is some buggy code in RTSPClient::handleResponseBytes
method(code line is 1547 ~ 1549).
In code, lineStart = nextLineStart; and nextLineStart is return value of
getLine.
getLine function can return NULL. So nextLineStart and lineStart could be
also null.
When lineStart is
Thanks Ross for your answer.
I used latest version(2014.07.18).
I don't know why only my own rtspserver is crashed. But, I think crash could
occurred in several test programs because this is logically problem.
RTPInterface::sendPacket call sendRTSPorRTCPPacketOverTCP method with
socketNumber.