PEER_EVENT_ENDPOINT_CHANGED_DATA structure (p2p.h)

The PEER_EVENT_ENDPOINT_CHANGED_DATA structure contains information returned when a PEER_EVENT_ENDPOINT_CHANGED or PEER_EVENT_MY_ENDPOINT_CHANGED event is raised on a peer participating in a peer collaboration network.

Syntax

typedef struct peer_event_endpoint_changed_data_tag {
  PPEER_CONTACT  pContact;
  PPEER_ENDPOINT pEndpoint;
} PEER_EVENT_ENDPOINT_CHANGED_DATA, *PPEER_EVENT_ENDPOINT_CHANGED_DATA;

Members

pContact

Pointer to a PEER_CONTACT structure that contains the contact information for the contact who changed endpoints.

pEndpoint

Pointer to a PEER_ENDPOINT structure that contains the new active endpoint for the peer specified in pContact.

Remarks

This event is raised when information about the endpoint changes. An example of this being the endpoint name in PEER_ENDPOINT structure is changed using PeerCollabSetEndpointName.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server None supported
Header p2p.h

See also

PEER_CONTACT

PEER_ENDPOINT

Peer Collaboration API Structures