/*
* IPv6TcpTable.h
* Copyright (c) 2011 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
// SOL9
// 2009/08/22
#pragma once
#include <sol/net/MibTable.h>
#include <sol/Arg.h>
#include <sol/String.h>
namespace SOL {
/*
typedef struct _MIB_TCP6TABLE {
DWORD dwNumEntries;
MIB_TCP6ROW table[ANY_SIZE];
}MIB_TCP6TABLE, *PMIB_TCP6TABLE;
*/
class IPv6TcpTable :public MibTable {
private:
PMIB_TCP6TABLE table;
public:
IPv6TcpTable()
:table(NULL)
{
}
public:
~IPv6TcpTable()
{
clear();
}
public:
virtual bool getTable()
{
clear();
bool rc = false;
DWORD dwSize = 0;
if (GetTcp6Table(NULL, &dwSize, FALSE) == ERROR_INSUFFICIENT_BUFFER) {
table = (PMIB_TCP6TABLE)new char[dwSize];
DWORD r = NO_ERROR;
if ((r = GetTcp6Table(table, &dwSize, FALSE)) == NO_ERROR ){
rc = true;
} else {
clear();
throw r;
}
}
return rc;
}
public:
void clear()
{
if (table) {
delete [] (char*)table;
table = NULL;
}
}
/*
typedef struct _MIB_TCP6ROW {
MIB_TCP_STATE State;
IN6_ADDR LocalAddr;
DWORD dwLocalScopeId;
DWORD dwLocalPort;
IN6_ADDR RemoteAddr;
DWORD dwRemoteScopeId;
DWORD dwRemotePort;
}MIB_TCP6ROW, *PMIB_TCP6ROW;
The dwLocalScopeId, and dwRemoteScopeId members are in network byte order.
In order to use the dwLocalScopeId or dwRemoteScopeId members,
the ntohl or inet_ntoa functions in Windows Sockets or similar functions may be needed.
*/
public:
virtual void display(MIB_TCP6ROW& table)
{
StringT<char> localIP;
getIPAddress(table.LocalAddr, localIP);
unsigned short localPort = getPort(table.dwLocalPort);
StringT<char> remoteIP;
getIPAddress(table.RemoteAddr, remoteIP);
unsigned short remotePort = getPort(table.dwRemotePort);
unsigned long localScopeId = getScopeId(table.dwLocalScopeId);
unsigned long remoteScopeId = getScopeId(table.dwRemoteScopeId);
printf("TcpIPv6 LocalIP=[%s]:%d\tRemoteIP=[%s]:%d\tState=%s\n",
(const char*)localIP,
localPort,
// localScopeId,
(const char*)remoteIP,
remotePort,
// remoteScopeId,
getState(table.State));
}
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");
}
}
}
};
}
|