blob: bb9907fa2b282b79c74419a75463a8df781ad2b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef PINGU_NETLINK_H
#define PINGU_NETLINK_H
#include <ev.h>
#include "pingu_iface.h"
int kernel_init(struct ev_loop *loop);
int kernel_route_modify(int action, struct pingu_gateway *route,
struct pingu_iface *iface, int table);
int kernel_route_multipath(int action, struct list_head *iface_list, int table);
#endif
|