Редагувати

Поділитися через


ADDRESSTABLE structure

The ADDRESSTABLE structure contains a table of address pairs.

Syntax

typedef struct _ADDRESSTABLE {
  DWORD       nAddressPairs;
  DWORD       nNonMacAddressPairs;
  ADDRESSPAIR AddressPair[MAX_ADDRESS_PAIRS];
} ADDRESSTABLE, *LPADDRESSTABLE;

Members

nAddressPairs

Number of address pairs in the AddressPair array.

nNonMacAddressPairs

Number of non-MAC address pairs.

AddressPair

Array of address pairs. Note that you may only store up to eight address pairs per ADDRESSTABLE structure.

Remarks

Use this structure as part of the capture filter construction process. For more information about implementing this structure, see Capture Filters.

Requirements

Requirement Value
Minimum supported client
Windows 2000 Professional [desktop apps only]
Minimum supported server
Windows 2000 Server [desktop apps only]
Header
Netmon.h

See also

ADDRESSPAIR

CAPTUREFILTER