~james-page/ubuntu/saucy/openvswitch/1.12-snapshot

« back to all changes in this revision

Viewing changes to lib/netlink.h

  • Committer: James Page
  • Date: 2013-08-21 10:16:57 UTC
  • mfrom: (1.1.20)
  • Revision ID: james.page@canonical.com-20130821101657-3o0z0qeiv5zkwlzi
New upstream snapshot

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
void nl_msg_put_be16(struct ofpbuf *, uint16_t type, ovs_be16 value);
69
69
void nl_msg_put_be32(struct ofpbuf *, uint16_t type, ovs_be32 value);
70
70
void nl_msg_put_be64(struct ofpbuf *, uint16_t type, ovs_be64 value);
 
71
void nl_msg_put_odp_port(struct ofpbuf *, uint16_t type, odp_port_t value);
71
72
void nl_msg_put_string(struct ofpbuf *, uint16_t type, const char *value);
72
73
 
73
74
size_t nl_msg_start_nested(struct ofpbuf *, uint16_t type);
170
171
ovs_be16 nl_attr_get_be16(const struct nlattr *);
171
172
ovs_be32 nl_attr_get_be32(const struct nlattr *);
172
173
ovs_be64 nl_attr_get_be64(const struct nlattr *);
 
174
odp_port_t nl_attr_get_odp_port(const struct nlattr *);
173
175
const char *nl_attr_get_string(const struct nlattr *);
174
176
void nl_attr_get_nested(const struct nlattr *, struct ofpbuf *);
175
177