Mobile
probe.txt
Associated article: Probing Network Characteristics
Tags: Mobile
Published source code accompanying the article by Michael Larson in which he presents a framework that lets you monitor, record, and act on packet performance. Also see PROBE.ZIP.
Probing Network Characteristics
by Michael Larson
Listing One
template <class T>
class Task : public Task_Base
{
public:
/*
* Constructor and Destructor
*/
Task (const string &taskName, int iMaxQueueSize = 1000);
virtual ~Task (void);
/*
* Initialize object
*/
virtual int init();
/*
* orderly shutdown of ...


