vlog: Change the default timestamp structure.
[openvswitch] / lib / netlink.h
index b7a87c6c39aa0e675abd5d84c7019e1e481d71d7..7eced42f42a660f178ccdb28548240c00179e70c 100644 (file)
@@ -184,6 +184,11 @@ struct nl_policy
     bool optional;
 };
 
+#define NL_POLICY_FOR(TYPE) \
+    .type = NL_A_UNSPEC, .min_len = sizeof(TYPE), .max_len = sizeof(TYPE)
+
+bool nl_attr_validate(const struct nlattr *, const struct nl_policy *);
+
 bool nl_policy_parse(const struct ofpbuf *, size_t offset,
                      const struct nl_policy[],
                      struct nlattr *[], size_t n_attrs);