struct tarpc_pat_gen_arg

Arguments to pass to the pattern generator function. Fields coefN can be used in different ways depending on a function. This structure can also be modified, e.g. add some more fields.

Parameters:

offset

Offset within pattern generator element, from which sender must send and receiver must check the sequence. It is used in generator functions which operates with elements larger than a byte.

coef1

coef2

coef3

Arguments for a pattern generator function.

struct tarpc_pat_gen_arg {
    // fields

    uint32_t offset;
    uint32_t coef1;
    uint32_t coef2;
    uint32_t coef3;
};