]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/rtnl.c
licensing: Add missing headers and FSF address
[mirror_lxc.git] / src / lxc / rtnl.c
CommitLineData
0ad19a3f 1/*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2008
5 *
6 * Authors:
9afe19d6 7 * Daniel Lezcano <daniel.lezcano at free.fr>
0ad19a3f 8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
250b1eec 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0ad19a3f 22 */
23#include <string.h>
24#include <stdio.h>
25#include <sys/socket.h>
26#include <stdlib.h>
27#include <errno.h>
28#include <unistd.h>
29#include <linux/netlink.h>
30#include <linux/rtnetlink.h>
f549edcc
GK
31
32#include "nl.h"
33#include "rtnl.h"
0ad19a3f 34
35extern int rtnetlink_open(struct rtnl_handler *handler)
36{
37 return netlink_open(&handler->nlh, NETLINK_ROUTE);
38}
39
40extern int rtnetlink_close(struct rtnl_handler *handler)
41{
42 return netlink_close(&handler->nlh);
43}
44
45extern int rtnetlink_rcv(struct rtnl_handler *handler, struct rtnlmsg *rtnlmsg)
46{
47 return netlink_rcv(&handler->nlh, (struct nlmsg *)&rtnlmsg->nlmsghdr);
48}
49
50extern int rtnetlink_send(struct rtnl_handler *handler, struct rtnlmsg *rtnlmsg)
51{
52
53 return netlink_send(&handler->nlh, (struct nlmsg *)&rtnlmsg->nlmsghdr);
54}
55
f79d43bb 56extern int rtnetlink_transaction(struct rtnl_handler *handler,
0ad19a3f 57 struct rtnlmsg *request, struct rtnlmsg *answer)
58{
59 return netlink_transaction(&handler->nlh, (struct nlmsg *)&request->nlmsghdr,
60 (struct nlmsg *)&answer->nlmsghdr);
61}
62
63extern struct rtnlmsg *rtnlmsg_alloc(size_t size)
64{
65/* size_t len = NLMSG_LENGTH(NLMSG_ALIGN(sizeof(struct rtnlmsghdr))) + size; */
66/* return (struct rtnlmsg *)nlmsg_alloc(len); */
67 return NULL;
68}
69
70extern void rtnlmsg_free(struct rtnlmsg *rtnlmsg)
71{
72 free(rtnlmsg);
73}