Share via


PF_HANDOFFENTRY

The PF_HANDOFFENTRY structure defines a protocol that Network Monitor adds to the handoff set of a parser.

typedef struct _PF_HANDOFFENTRY {
  char szIniFile[MAX_PATH];
  char szIniSection[MAX_PATH];
  char szProtocol[MAX_PROTOCOL_NAME_LEN];
  DWORD dwHandOffValue;
  PF_HANDOFFVALUEFORMATBASE ValueFormatBase;
} PF_HANDOFFENTRY, 
 *PPF_HANDOFFENTRY;

Members

  • szIniFile
    Name of the INI file associated with the protocol.
  • szIniSection
    Section label within the INI file.
  • szProtocol
    Name of the protocol.
  • dwHandOffValue
    Value associated with the protocol.
  • ValueFormatBase
    Numeric base of the protocol value that is specified in dwHandOffValue. The ValueFormatBase function must be set to one of the following:
    Value Meaning
    HANDOFF_VALUE_FORMAT_BASE_UNKNOWN Unknown base
    HANDOFF_VALUE_FORMAT_BASE_DECIMAL Decimal base
    HANDOFF_VALUE_FORMAT_BASE_HEX Hexadecimal base

Remarks

An array of the PF_HANDOFFENTRY structures is used in the PF_HANDOFFSET structure.

Requirements

Client Requires Windows XP, Windows 2000 Professional, or Windows NT Workstation 4.0.
Server Requires Windows Server 2003, Windows 2000 Server, or Windows NT Server 4.0.
Header

Declared in Netmon.h.

See Also

PF_HANDOFFSET