summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSusant Sahani <susant@redhat.com>2014-04-25 17:21:23 (GMT)
committerThomas Haller <thaller@redhat.com>2014-05-05 17:08:29 (GMT)
commitd715b8a5f6ec8faf205ae77950a1c625440be22f (patch)
treeb0340f8ec1e653a7aa8093af677ed37346bfb6a8 /tests
parent57bdc4ff4895dd91cc723d22eecadcf48945e87c (diff)
downloadlibnl-d715b8a5f6ec8faf205ae77950a1c625440be22f.zip
libnl-d715b8a5f6ec8faf205ae77950a1c625440be22f.tar.gz
libnl-d715b8a5f6ec8faf205ae77950a1c625440be22f.tar.bz2
introduce sit tunnel support
This patch introduces sit tunnel support Signed-off-by: Susant Sahani <susant@redhat.com> Acked-by: Thomas Graf <tgraf@suug.ch> [thaller@redhat.com: change WS to TAB, fix code doc] Signed-off-by: Thomas Haller <thaller@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/.gitignore1
-rw-r--r--tests/Makefile.am1
-rw-r--r--tests/test-create-sit.c56
3 files changed, 58 insertions, 0 deletions
diff --git a/tests/.gitignore b/tests/.gitignore
index edb8a83..f7409c6 100644
--- a/tests/.gitignore
+++ b/tests/.gitignore
@@ -9,6 +9,7 @@
/test-create-bridge
/test-create-ipgre
/test-create-ipip
+/test-create-sit
/test-create-veth
/test-create-vlan
/test-create-vxlan
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 5bc939e..584ab60 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -26,6 +26,7 @@ check_PROGRAMS = \
test-create-bridge \
test-create-ipgre \
test-create-ipip \
+ test-create-sit \
test-delete-link \
test-socket-creation \
test-complex-HTB-with-hash-filters \
diff --git a/tests/test-create-sit.c b/tests/test-create-sit.c
new file mode 100644
index 0000000..d33e496
--- /dev/null
+++ b/tests/test-create-sit.c
@@ -0,0 +1,56 @@
+#include <netlink/route/link/sit.h>
+#include <netlink-private/netlink.h>
+
+int main(int argc, char *argv[])
+{
+ struct nl_cache *link_cache;
+ struct rtnl_link *link;
+ struct in_addr addr;
+ struct nl_sock *sk;
+ int err, if_index;
+
+ sk = nl_socket_alloc();
+ if ((err = nl_connect(sk, NETLINK_ROUTE)) < 0) {
+ nl_perror(err, "Unable to connect socket");
+ return err;
+ }
+
+ err = rtnl_link_alloc_cache(sk, AF_UNSPEC, &link_cache);
+ if ( err < 0) {
+ nl_perror(err, "Unable to allocate cache");
+ return err;
+ }
+
+ if_index = rtnl_link_name2i(link_cache, "eno16777736");
+ if (!if_index) {
+ fprintf(stderr, "Unable to lookup eno16777736");
+ return -1;
+ }
+
+ link = rtnl_link_sit_alloc();
+ if(!link) {
+ nl_perror(err, "Unable to allocate link");
+ return -1;
+
+ }
+ rtnl_link_set_name(link, "sit-tun");
+ rtnl_link_sit_set_link(link, if_index);
+
+ inet_pton(AF_INET, "192.168.254.12", &addr.s_addr);
+ rtnl_link_sit_set_local(link, addr.s_addr);
+
+ inet_pton(AF_INET, "192.168.254.13", &addr.s_addr);
+ rtnl_link_sit_set_remote(link, addr.s_addr);
+
+ rtnl_link_sit_set_ttl(link, 64);
+ err = rtnl_link_add(sk, link, NLM_F_CREATE);
+ if (err < 0) {
+ nl_perror(err, "Unable to add link");
+ return err;
+ }
+
+ rtnl_link_put(link);
+ nl_close(sk);
+
+ return 0;
+}