Lines Matching full:message

26  * The payload of the Netlink message contains sequences of attributes that are
101 * mnl_attr_next - get the next attribute in the payload of a netlink message
242 * \param nlh pointer to netlink message
248 * the Netlink message. You can then put the attribute in an array as it
275 * the Netlink message. You can then put the attribute in an array as it
295 * mnl_attr_parse_payload - parse attributes in payload of Netlink message
296 * \param payload pointer to payload of the Netlink message
302 * commonly known as the payload of the Netlink message. Thus, you have to
303 * pass a pointer to the Netlink message payload, instead of the entire
304 * message.
386 * mnl_attr_put - add an attribute to netlink message
387 * \param nlh pointer to the netlink message
392 * This function updates the length field of the Netlink message (nlmsg_len)
413 * mnl_attr_put_u8 - add 8-bit unsigned integer attribute to netlink message
414 * \param nlh pointer to the netlink message
418 * This function updates the length field of the Netlink message (nlmsg_len)
428 * mnl_attr_put_u16 - add 16-bit unsigned integer attribute to netlink message
429 * \param nlh pointer to the netlink message
433 * This function updates the length field of the Netlink message (nlmsg_len)
443 * mnl_attr_put_u32 - add 32-bit unsigned integer attribute to netlink message
444 * \param nlh pointer to the netlink message
448 * This function updates the length field of the Netlink message (nlmsg_len)
458 * mnl_attr_put_u64 - add 64-bit unsigned integer attribute to netlink message
459 * \param nlh pointer to the netlink message
463 * This function updates the length field of the Netlink message (nlmsg_len)
473 * mnl_attr_put_str - add string attribute to netlink message
474 * \param nlh pointer to the netlink message
478 * This function updates the length field of the Netlink message (nlmsg_len)
488 * mnl_attr_put_strz - add string attribute to netlink message
489 * \param nlh pointer to the netlink message
496 * This function updates the length field of the Netlink message (nlmsg_len)
507 * \param nlh pointer to the netlink message
527 * mnl_attr_put_check - add an attribute to netlink message
528 * \param nlh pointer to the netlink message
529 * \param buflen size of buffer which stores the message
534 * This function first checks that the data can be added to the message
536 * message (nlmsg_len) by adding the size (header + payload) of the new
538 * to the message, otherwise false is returned.
551 * mnl_attr_put_u8_check - add 8-bit unsigned int attribute to netlink message
552 * \param nlh pointer to the netlink message
553 * \param buflen size of buffer which stores the message
557 * This function first checks that the data can be added to the message
559 * message (nlmsg_len) by adding the size (header + payload) of the new
561 * to the message, otherwise false is returned.
570 * mnl_attr_put_u16_check - add 16-bit unsigned int attribute to netlink message
571 * \param nlh pointer to the netlink message
572 * \param buflen size of buffer which stores the message
576 * This function first checks that the data can be added to the message
578 * message (nlmsg_len) by adding the size (header + payload) of the new
580 * to the message, otherwise false is returned.
581 * This function updates the length field of the Netlink message (nlmsg_len)
591 * mnl_attr_put_u32_check - add 32-bit unsigned int attribute to netlink message
592 * \param nlh pointer to the netlink message
593 * \param buflen size of buffer which stores the message
597 * This function first checks that the data can be added to the message
599 * message (nlmsg_len) by adding the size (header + payload) of the new
601 * to the message, otherwise false is returned.
602 * This function updates the length field of the Netlink message (nlmsg_len)
612 * mnl_attr_put_u64_check - add 64-bit unsigned int attribute to netlink message
613 * \param nlh pointer to the netlink message
614 * \param buflen size of buffer which stores the message
618 * This function first checks that the data can be added to the message
620 * message (nlmsg_len) by adding the size (header + payload) of the new
622 * to the message, otherwise false is returned.
623 * This function updates the length field of the Netlink message (nlmsg_len)
633 * mnl_attr_put_str_check - add string attribute to netlink message
634 * \param nlh pointer to the netlink message
635 * \param buflen size of buffer which stores the message
639 * This function first checks that the data can be added to the message
641 * message (nlmsg_len) by adding the size (header + payload) of the new
643 * to the message, otherwise false is returned.
644 * This function updates the length field of the Netlink message (nlmsg_len)
654 * mnl_attr_put_strz_check - add string attribute to netlink message
655 * \param nlh pointer to the netlink message
656 * \param buflen size of buffer which stores the message
663 * This function first checks that the data can be added to the message
665 * message (nlmsg_len) by adding the size (header + payload) of the new
667 * to the message, otherwise false is returned.
677 * \param buflen size of buffer which stores the message
678 * \param nlh pointer to the netlink message
696 * \param nlh pointer to the netlink message
709 * \param nlh pointer to the netlink message