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
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
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