Mobile
route.txt
Associated article: Route Control & Streaming Video
Tags: Mobile
Published source code accompanying the article by Michael Larson in which he uses route control to improve the quality of streaming video. Route control lets you select the path of data packets as they leave your video servers.
Route Control & Streaming Video
by Michael Larson
Listing One
class MeasurementBase
{
public:
bool processRequest(MsmtRequest &req) = 0; //implemented by derived class
bool shutdown(); //shutdown this component
protected:
MeasurementBase(RouteComm *pRouteComm, int iPort) :
m_pRouteComm(pRouteComm), m_iPort(iPort) {;}
virtual ...


