MIB_TCPTABLE

The MIB_TCPTABLE structure contains a table of TCP connections.

typedef struct _MIB_TCPTABLE {
  DWORD      dwNumEntries;    // number of entries in the table 
  MIB_TCPROW table[ANY_SIZE]; // array of TCP connections 
} MIB_TCPTABLE, *PMIB_TCPTABLE;

Members

dwNumEntries
Specifies the number of entries in the table.
table[ANY_SIZE]
Pointer to a table of TCP connections implemented as an array of MIB_TCPROW structures.

Requirements

  Windows NT/2000: Requires Windows NT 4.0 SP4 or later.
  Windows 95/98: Requires Windows 98.
  Header: Declared in Iprtrmib.h.

See Also

GetTcpTable, MIB_TCPROW