#include <psockbun.h>
Inheritance diagram for PInterfaceMonitor:
A user may override this singleton by creating a derived class and making a static instance of it before any monitor client classes are created. This would typically be done in the users main program.
typedef PSmartPtr<PInterfaceMonitorClient> PInterfaceMonitor::ClientPtr [protected] |
typedef std::list<PInterfaceMonitorClient *> PInterfaceMonitor::ClientList_T [protected] |
PInterfaceMonitor::PInterfaceMonitor | ( | unsigned | refreshInterval = DefaultRefreshInterval , |
|
BOOL | runMonitorThread = TRUE | |||
) |
virtual PInterfaceMonitor::~PInterfaceMonitor | ( | ) | [virtual] |
static PInterfaceMonitor& PInterfaceMonitor::GetInstance | ( | ) | [static] |
Return the singleton interface for the network monitor.
BOOL PInterfaceMonitor::Start | ( | ) |
Start monitoring network interfaces.
void PInterfaceMonitor::Stop | ( | ) |
Stop monitoring network interfaces.
PStringArray PInterfaceMonitor::GetInterfaces | ( | BOOL | includeLoopBack = FALSE , |
|
const PIPSocket::Address & | destination = PIPSocket::GetDefaultIpAny() | |||
) |
Get an array of all current interface descriptors, possibly including the loopback (127.0.0.1) interface. Note the names are of the form ipname, eg "10.0.1.11%3Com 3C90x Ethernet Adapter" or "192.168.0.10%eth0"
destination | Flag for if loopback is to included in list |
BOOL PInterfaceMonitor::IsValidBindingForDestination | ( | const PIPSocket::Address & | binding, | |
const PIPSocket::Address & | destination | |||
) |
Returns whether destination is reachable through binding or not. The default behaviour returns TRUE unless there is an interface filter installed an the filter does not return 'binding' among it's interfaces.
BOOL PInterfaceMonitor::GetInterfaceInfo | ( | const PString & | iface, | |
InterfaceEntry & | info | |||
) |
Return information about an active interface given the descriptor string. Note that when searchin the descriptor may be a partial match e.g. "10.0.1.11" or "%eth0" may be used.
info | Interface desciptor name Information on the interface |
void PInterfaceMonitor::SetInterfaceFilter | ( | PInterfaceFilter * | filter | ) |
Sets the monitor's interface filter. Note that the monitor instance handles deletion of the filter.
virtual void PInterfaceMonitor::RefreshInterfaceList | ( | ) | [virtual] |
void PInterfaceMonitor::UpdateThreadMain | ( | ) | [protected] |
void PInterfaceMonitor::AddClient | ( | PInterfaceMonitorClient * | ) | [protected] |
void PInterfaceMonitor::RemoveClient | ( | PInterfaceMonitorClient * | ) | [protected] |
virtual void PInterfaceMonitor::OnAddInterface | ( | const InterfaceEntry & | entry | ) | [protected, virtual] |
virtual void PInterfaceMonitor::OnRemoveInterface | ( | const InterfaceEntry & | entry | ) | [protected, virtual] |
friend class PInterfaceMonitorClient [friend] |
ClientList_T PInterfaceMonitor::currentClients [protected] |
PIPSocket::InterfaceTable PInterfaceMonitor::currentInterfaces [protected] |
BOOL PInterfaceMonitor::runMonitorThread [protected] |
PTimeInterval PInterfaceMonitor::refreshInterval [protected] |
PMutex PInterfaceMonitor::mutex [protected] |
PThread* PInterfaceMonitor::updateThread [protected] |
PSyncPoint PInterfaceMonitor::threadRunning [protected] |
PInterfaceFilter* PInterfaceMonitor::interfaceFilter [protected] |