Glenn L McGrath | f112daa | 2002-12-01 23:04:06 +0000 | [diff] [blame] | 1 | /* |
| 2 | * ip.c "ip" utility frontend. |
| 3 | * |
Bernhard Reutner-Fischer | ab18782 | 2005-10-26 10:47:26 +0000 | [diff] [blame] | 4 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
Glenn L McGrath | f112daa | 2002-12-01 23:04:06 +0000 | [diff] [blame] | 5 | * |
| 6 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 7 | * |
| 8 | * |
| 9 | * Changes: |
| 10 | * |
| 11 | * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses |
| 12 | */ |
| 13 | |
Bernhard Reutner-Fischer | ab18782 | 2005-10-26 10:47:26 +0000 | [diff] [blame] | 14 | #include "libiproute/utils.h" |
| 15 | #include "libiproute/ip_common.h" |
Glenn L McGrath | f112daa | 2002-12-01 23:04:06 +0000 | [diff] [blame] | 16 | |
| 17 | #include "busybox.h" |
| 18 | |
| 19 | int iproute_main(int argc, char **argv) |
| 20 | { |
| 21 | ip_parse_common_args(&argc, &argv); |
| 22 | |
| 23 | return do_iproute(argc-1, argv+1); |
| 24 | } |