2006-07-02 19:47:05 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2002-12-01 23:04:06 +00:00
|
|
|
/*
|
|
|
|
* ip.c "ip" utility frontend.
|
|
|
|
*
|
2005-10-26 10:47:26 +00:00
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2002-12-01 23:04:06 +00:00
|
|
|
*
|
|
|
|
* Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Changes:
|
|
|
|
*
|
|
|
|
* Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
|
|
|
|
*/
|
|
|
|
|
2005-10-26 10:47:26 +00:00
|
|
|
#include "libiproute/utils.h"
|
|
|
|
#include "libiproute/ip_common.h"
|
2002-12-01 23:04:06 +00:00
|
|
|
|
|
|
|
#include "busybox.h"
|
|
|
|
|
|
|
|
int iproute_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
ip_parse_common_args(&argc, &argv);
|
|
|
|
|
|
|
|
return do_iproute(argc-1, argv+1);
|
|
|
|
}
|