]> git.proxmox.com Git - mirror_iproute2.git/blobdiff - rdma/rdma.h
man: tc-taprio.8: fix syntax error
[mirror_iproute2.git] / rdma / rdma.h
index 42be91748c15c323b89506b2eb8b40cb43ac734a..547bb5749a39f68e7237f976ee57518f3e7aa21d 100644 (file)
@@ -74,6 +74,13 @@ struct rd_cmd {
        int (*func)(struct rd *rd);
 };
 
+/*
+ * Parser interface
+ */
+bool rd_no_arg(struct rd *rd);
+void rd_arg_inc(struct rd *rd);
+
+char *rd_argv(struct rd *rd);
 
 /*
  * Commands interface
@@ -89,6 +96,8 @@ void rd_free(struct rd *rd);
 int rd_set_arg_to_devname(struct rd *rd);
 int rd_argc(struct rd *rd);
 
+int strcmpx(const char *str1, const char *str2);
+
 /*
  * Device manipulation
  */
@@ -109,12 +118,14 @@ int rd_recv_msg(struct rd *rd, mnl_cb_t callback, void *data, uint32_t seq);
 void rd_prepare_msg(struct rd *rd, uint32_t cmd, uint32_t *seq, uint16_t flags);
 int rd_dev_init_cb(const struct nlmsghdr *nlh, void *data);
 int rd_attr_cb(const struct nlattr *attr, void *data);
+int rd_attr_check(const struct nlattr *attr, int *typep);
 
 /*
  * Print helpers
  */
 void print_driver_table(struct rd *rd, struct nlattr *tb);
 void newline(struct rd *rd);
+void newline_indent(struct rd *rd);
 #define MAX_LINE_LENGTH 80
 
 #endif /* _RDMA_TOOL_H_ */