Re: [Live-devel] Extending RTSPClinetSession class

2009-01-19 Thread Matt Schuckmann
Title: Extending RTSPClinetSession class We had the same problem. We made the RTSPClientSession class protected and added a protected virtual factory method for creating the RTSPClientSession objects and made IncomingRequestHandler1() call it. I then made my own version RTSPServer and RTSPCli

Re: [Live-devel] Extending RTSPClinetSession class

2009-01-19 Thread Ross Finlayson
I am trying to extend RTSPClientSession to support "SET_PARAMETER". However the class is declared as private within the RTSPServer class. In addition the IncomingRequestHandler1 which I should override, is also declared as private within the RTSPClientSession class. Should I change both of t

[Live-devel] Extending RTSPClinetSession class

2009-01-18 Thread Yedidia Amit
Hi, I am trying to extend RTSPClientSession to support "SET_PARAMETER". However the class is declared as private within the RTSPServer class. In addition the IncomingRequestHandler1 which I should override, is also declared as private within the RTSPClientSession class. Should I change both of