PEER_EVENT_INCOMING_DATA structure (p2p.h)

The PEER_GROUP_EVENT_DATA structure points to the PEER_EVENT_INCOMING_DATA structure if one of the following peer events is triggered:

  • PEER_GRAPH_INCOMING_DATA
  • PEER_GROUP_INCOMING_DATA
The PEER_EVENT_INCOMING_DATA structure contains updated information that includes data changes a node receives from a neighbor or direct connection.

Syntax

typedef struct peer_event_incoming_data_tag {
  DWORD     dwSize;
  ULONGLONG ullConnectionId;
  GUID      type;
  PEER_DATA data;
} PEER_EVENT_INCOMING_DATA, *PPEER_EVENT_INCOMING_DATA;

Members

dwSize

Specifies the size of a structure.

ullConnectionId

Specifies the unique ID of a data connection.

type

Specifies the application-defined data type of incoming data.

data

Specifies the actual data received.

Requirements

Requirement Value
Minimum supported client Windows XP with SP2 [desktop apps only],Windows XP with SP1 with the Advanced Networking Pack forWindows XP
Minimum supported server None supported
Header p2p.h

See also

PEER_DATA

PEER_GRAPH_EVENT_DATA

PEER_GROUP_EVENT_DATA