<div class="content"><p>The <b>MIB_TCPTABLE</b> structure contains a table of IPv4
TCP connections on the local computer.</p><dl>
<dd>
<div><pre> typedef struct _MIB_TCPTABLE {
   DWORD dwNumEntries;
   MIB_TCPROW table[1];
   BYTE reserved[8];
 } MIB_TCPTABLE,
  *PMIB_TCPTABLE;
</pre></div>
</dd></dl><p><b>dwNumEntries: </b>The number of entries in the
table.</p><p><b>table: </b>A pointer to a table of TCP connections
implemented as an array of MIB_TCPROW (section <a href="91b21154-6487-4840-9b07-49863186c1d7" data-linktype="relative-path">2.2.1.2.55</a>) structures.</p><p><b>reserved: </b>An array of 8 bytes that SHOULD be
set to 0 and ignored on receipt.</p></div>