~ubuntu-branches/ubuntu/quantal/lxc/quantal-201208301614

« back to all changes in this revision

Viewing changes to src/lxc/nl.h

  • Committer: Bazaar Package Importer
  • Author(s): Guido Trotter
  • Date: 2010-01-25 15:39:38 UTC
  • mfrom: (1.2.3 upstream)
  • mto: (3.1.15 sid)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20100125153938-m2uhavs2e6ofnhkn
Tags: upstream-0.6.5
ImportĀ upstreamĀ versionĀ 0.6.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
int nla_put_u32(struct nlmsg *nlmsg, int attr, int value);
162
162
 
163
163
/*
 
164
 * nla_put_u16: copy an integer to a netlink message attribute
 
165
 *
 
166
 * @nlmsg: the netlink message to be filled
 
167
 * @attr: the attribute name of the unsigned 16-bit value
 
168
 * @value: 16-bit attribute data value to be copied to the netlink message
 
169
 *
 
170
 * Returns 0 on success, < 0 otherwise
 
171
 */
 
172
int nla_put_u16(struct nlmsg *nlmsg, int attr, ushort value);
 
173
 
 
174
/*
164
175
 * nla_put_attr: add an attribute name to a netlink 
165
176
 *
166
177
 * @nlmsg: the netlink message to be filled