HccnRpingPayloadHead

Description

Stores the data structure of a custom payload header.

Prototype

typedef struct HccnRpingPayloadHeadDef {
    char srcIp[64];        /* local(client) IP */
    char dstIp[64];        /* remote(target) ip */
    uint32_t payloadLen;   /* user defined payload length */
    uint32_t resvd[3];
    HccnRpingTimestamp t1; /* client send timestamp */
    HccnRpingTimestamp t2; /* target recv timestamp */
    HccnRpingTimestamp t3; /* target send timestamp */
    HccnRpingTimestamp t4; /* client recv timestamp */
    uint32_t rpingBatchId; /* batch ping task id */
    uint8_t reserved[44];
} HccnRpingPayloadHead;