struct msg_arg

Overview

Structure that represents argument in its raw representation There must be some more information given to determine which type of data it consists of. More…

#include <rgt_common.h>

struct msg_arg {
    // fields

    struct msg_arg* next;
    uint8_t* val;
    int len;
};

Detailed Documentation

Structure that represents argument in its raw representation There must be some more information given to determine which type of data it consists of. (This information can be obtained form format string)

Fields

struct msg_arg* next

Pointer to the next argument

uint8_t* val

Pointer to raw argument content (numbers are keeped in network byte order)

int len

Number of bytes allocated for the argument