summaryrefslogtreecommitdiff
path: root/networking/iptunnel.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-12-27 04:35:04 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-12-27 04:35:04 +0000
commit8d42f86b146871ae4c4cafd3801a85f381249a14 (patch)
treeb963999fc54eddb65f1929b894f868e24851fc9c /networking/iptunnel.c
downloadbusybox-w32-8d42f86b146871ae4c4cafd3801a85f381249a14.tar.gz
busybox-w32-8d42f86b146871ae4c4cafd3801a85f381249a14.tar.bz2
busybox-w32-8d42f86b146871ae4c4cafd3801a85f381249a14.zip
Correcting branch name to be like previous ones
Diffstat (limited to 'networking/iptunnel.c')
-rw-r--r--networking/iptunnel.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/networking/iptunnel.c b/networking/iptunnel.c
new file mode 100644
index 000000000..9ae734a21
--- /dev/null
+++ b/networking/iptunnel.c
@@ -0,0 +1,25 @@
1/* vi: set sw=4 ts=4: */
2/*
3 * ip.c "ip" utility frontend.
4 *
5 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
6 *
7 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
8 *
9 *
10 * Changes:
11 *
12 * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
13 */
14
15#include "libiproute/utils.h"
16#include "libiproute/ip_common.h"
17
18#include "busybox.h"
19
20int iptunnel_main(int argc, char **argv)
21{
22 ip_parse_common_args(&argc, &argv);
23
24 return do_iptunnel(argc-1, argv+1);
25}