summaryrefslogtreecommitdiff
path: root/doc/src/examples/nla_put.c
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/examples/nla_put.c')
-rw-r--r--doc/src/examples/nla_put.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/doc/src/examples/nla_put.c b/doc/src/examples/nla_put.c
deleted file mode 100644
index 0683fa5..0000000
--- a/doc/src/examples/nla_put.c
+++ /dev/null
@@ -1,14 +0,0 @@
-struct my_attr_struct {
- uint32_t a;
- uint32_t b;
-};
-
-int my_put(struct nl_msg *msg)
-{
- struct my_attr_struct obj = {
- .a = 10,
- .b = 20,
- };
-
- return nla_put(msg, ATTR_MY_STRUCT, sizeof(obj), &obj);
-}