/*
* UdpTableOwnerPid.h
* Copyright (c) 2011 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
// SOL9
// 2009/08/22
#pragma once
#include <sol/Object.h>
#include <sol/Arg.h>
#include <sol/net/UdpTable.h>
namespace SOL {
class UdpTableOwnerPid :public UdpTable {
/*
typedef struct _MIB_UDPTABLE_OWNER_PID {
DWORD dwNumEntries;
MIB_UDPROW_OWNER_PID table[ANY_SIZE];
}MIB_UDPTABLE_OWNER_PID, *PMIB_UDPTABLE_OWNER_PID;
*/
private:
MIB_UDPTABLE_OWNER_PID *table;
public:
MIB_UDPTABLE_OWNER_PID* getUdpTable()
{
return table;
}
public:
UdpTableOwnerPid()
:table(NULL)
{
}
public:
~UdpTableOwnerPid()
{
clear();
}
public:
virtual bool getTable()
{
bool rc = false;
DWORD dwSize=0;
clear();
if (GetExtendedUdpTable(NULL,&dwSize, TRUE,
AF_INET, UDP_TABLE_OWNER_PID, 0) == ERROR_INSUFFICIENT_BUFFER) {
table = (PMIB_UDPTABLE_OWNER_PID)new char[dwSize];
DWORD r = NO_ERROR;
if ((r = GetExtendedUdpTable(table, &dwSize, TRUE,
AF_INET, UDP_TABLE_OWNER_PID, 0)) == NO_ERROR){
rc = true;
} else {
clear();
throw r;
}
}
return rc;
}
public:
void clear()
{
if (table) {
delete [] (char*)table;
table = NULL;
}
}
/*
typedef struct _MIB_UDPROW_OWNER_PID {
DWORD dwLocalAddr;
DWORD dwLocalPort;
DWORD dwOwningPid;
}MIB_UDPROW_OWNER_PID, *PMIB_UDPRPW_OWNER_PID;
*/
public:
virtual void display(MIB_UDPROW_OWNER_PID& table)
{
StringT<char> localIP;
getIPAddress(table.dwLocalAddr, localIP);
unsigned int localPort = getPort(table.dwLocalPort);
printf("UdpOwnerPid LocalIP=%s:%d\tPID=%d\n"
,(const char*)localIP
,localPort
,table.dwOwningPid);
}
public:
virtual void display()
{
if (table == NULL) {
getTable();
}
if (table) {
for (int i = 0 ; i < (int)table->dwNumEntries; i++) {
display(table->table[i]);
printf("\n");
}
}
}
};
}
|