blob: 43eaea633ea7dd43f573e1cc93dcd763f81cf256 [file] [log] [blame]
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +00001/* 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 iprule_main(int argc, char **argv)
21{
22 ip_parse_common_args(&argc, &argv);
23
24 return do_iprule(argc-1, argv+1);
25}