Manousaridis Angelos writes:
[oweals/busybox.git] / networking / iptunnel.c
1 /*
2  * ip.c         "ip" utility frontend.
3  *
4  *              This program is free software; you can redistribute it and/or
5  *              modify it under the terms of the GNU General Public License
6  *              as published by the Free Software Foundation; either version
7  *              2 of the License, or (at your option) any later version.
8  *
9  * Authors:     Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10  *
11  *
12  * Changes:
13  *
14  * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
15  */
16
17 #include "./libiproute/utils.h"
18 #include "./libiproute/ip_common.h"
19
20 #include "busybox.h"
21
22 int iptunnel_main(int argc, char **argv)
23 {
24         ip_parse_common_args(&argc, &argv);
25
26         return do_iptunnel(argc-1, argv+1);
27 }