[Live-devel] how about changing RTSPClinet::resetTCPSockets() to virtual function

2015-12-02 Thread ChaseopIm
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

Re: [Live-devel] RTSPClient bug?

2015-09-24 Thread ChaseopIm
Thank you for your comments. ChaSeop Im ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-devel

[Live-devel] RTSPClient bug?

2015-09-24 Thread ChaseopIm
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

[Live-devel] crash when close rtspserver

2015-05-11 Thread ChaseopIm
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

Re: [Live-devel] RTCP APP packet handling

2015-02-12 Thread ChaseopIm
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

Re: [Live-devel] check RTSPClient::handleResponseBytes

2015-01-18 Thread ChaseopIm
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

[Live-devel] check RTSPClient::handleResponseBytes

2015-01-18 Thread ChaseopIm
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

Re: [Live-devel] Problem with RTPInterface::sendPacket method

2014-07-24 Thread ChaSeopIm
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.