diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-03-15 00:09:20 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-03-15 00:09:20 +0100 |
commit | 87648299f8944a3268210e0315f6b5244d42fa4f (patch) | |
tree | fdb65696be4318da531fbdbc7648130c8b92d7f5 /system-dummy.c | |
parent | 73cb255e78e88637a620108bd34ac917ac6e7c41 (diff) |
system-linux: add functions for adding/removing ip tunnels (currently only sit supported)
Diffstat (limited to 'system-dummy.c')
-rw-r--r-- | system-dummy.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/system-dummy.c b/system-dummy.c index 71dad0e..401a1a9 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -206,3 +206,13 @@ time_t system_get_rtime(void) return 0; } + +int system_del_ip_tunnel(const char *name) +{ + return 0; +} + +int system_add_ip_tunnel(const char *name, struct blob_attr *attr) +{ + return 0; +} |