<html><head><base href="x-msg://3018/"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Rather than trying to detect when the RTSP connection closes (which isn't reliable, and might not happen for a long time after the server disappears), a better solution is to arrange for a timer to expire if no data arrives within a certain period of time (e.g., 1 second).  This will also detect situations where the camera server remains alive, but has stopped streaming data for some reason.<div><br></div><div>On way to do this is the create a delayed event - using "TaskScheduler::scheduleDelayedTask()" - for (e.g.) 1 second, after you've received the response to the RTSP "PLAY" command, and then reschedule the event - using "TaskScheduler::rescheduleDelayedTask()" - each time new data arrives.  If the delayed event gets called, then you know that no new data has arrived within the delay period (e.g., 1 second).</div><br><br><div apple-content-edited="true">
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; ">Ross Finlayson<br>Live Networks, Inc.<br><a href="http://www.live555.com/">http://www.live555.com/</a></span></span>
</div>
<br></body></html>