diff options
author | Glenn L McGrath | 2002-12-01 23:04:06 +0000 |
---|---|---|
committer | Glenn L McGrath | 2002-12-01 23:04:06 +0000 |
commit | f112daa232122dd114933d04a9e415cfc61f1717 (patch) | |
tree | 1e52823545fb3e20f89205fd6224017e19586c72 /networking/iproute.c | |
parent | f3faf41334fab96d20854c2b4c1acab022c98028 (diff) | |
download | busybox-f112daa232122dd114933d04a9e415cfc61f1717.zip busybox-f112daa232122dd114933d04a9e415cfc61f1717.tar.gz |
Enable ip commands to be compiled seperate from ip, modifed patch from Bastian Blank
Diffstat (limited to 'networking/iproute.c')
-rw-r--r-- | networking/iproute.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/networking/iproute.c b/networking/iproute.c new file mode 100644 index 0000000..d049a87 --- /dev/null +++ b/networking/iproute.c @@ -0,0 +1,27 @@ +/* + * ip.c "ip" utility frontend. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version + * 2 of the License, or (at your option) any later version. + * + * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> + * + * + * Changes: + * + * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses + */ + +#include "./libiproute/utils.h" +#include "./libiproute/ip_common.h" + +#include "busybox.h" + +int iproute_main(int argc, char **argv) +{ + ip_parse_common_args(&argc, &argv); + + return do_iproute(argc-1, argv+1); +} |