summaryrefslogtreecommitdiff
path: root/system-dummy.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-03-15 00:09:20 +0100
committerFelix Fietkau <nbd@openwrt.org>2012-03-15 00:09:20 +0100
commit87648299f8944a3268210e0315f6b5244d42fa4f (patch)
treefdb65696be4318da531fbdbc7648130c8b92d7f5 /system-dummy.c
parent73cb255e78e88637a620108bd34ac917ac6e7c41 (diff)
downloadnetifd-87648299f8944a3268210e0315f6b5244d42fa4f.tar.gz
system-linux: add functions for adding/removing ip tunnels (currently only sit supported)
Diffstat (limited to 'system-dummy.c')
-rw-r--r--system-dummy.c10
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;
+}