network "default" --> bb_INET_default. Reduce 2 exported from find applet
This commit is contained in:
parent
9d7010ca86
commit
007a011647
@ -34,8 +34,8 @@
|
||||
#include "busybox.h"
|
||||
|
||||
//XXX just found out about libbb/messages.c . maybe move stuff there ? - ghoz
|
||||
const char msg_req_arg[] = "option `%s' requires an argument";
|
||||
const char msg_invalid_arg[] = "invalid argument `%s' to `%s'";
|
||||
static const char msg_req_arg[] = "option `%s' requires an argument";
|
||||
static const char msg_invalid_arg[] = "invalid argument `%s' to `%s'";
|
||||
|
||||
static char *pattern;
|
||||
|
||||
|
@ -21,6 +21,7 @@
|
||||
|
||||
#include "utils.h"
|
||||
#include "libbb.h"
|
||||
#include "inet_common.h"
|
||||
|
||||
int get_integer(int *val, char *arg, int base)
|
||||
{
|
||||
@ -128,7 +129,7 @@ int get_addr_1(inet_prefix * addr, char *name, int family)
|
||||
|
||||
memset(addr, 0, sizeof(*addr));
|
||||
|
||||
if (strcmp(name, "default") == 0 ||
|
||||
if (strcmp(name, bb_INET_default) == 0 ||
|
||||
strcmp(name, "all") == 0 || strcmp(name, "any") == 0) {
|
||||
addr->family = family;
|
||||
addr->bytelen = (family == AF_INET6 ? 16 : 4);
|
||||
@ -172,7 +173,7 @@ int get_prefix_1(inet_prefix * dst, char *arg, int family)
|
||||
|
||||
memset(dst, 0, sizeof(*dst));
|
||||
|
||||
if (strcmp(arg, "default") == 0 || strcmp(arg, "any") == 0) {
|
||||
if (strcmp(arg, bb_INET_default) == 0 || strcmp(arg, "any") == 0) {
|
||||
dst->family = family;
|
||||
dst->bytelen = 0;
|
||||
dst->bitlen = 0;
|
||||
|
@ -347,7 +347,7 @@ static void INET6_setroute(int action, char **args)
|
||||
/* We know args isn't NULL from the check in route_main. */
|
||||
const char *target = *args++;
|
||||
|
||||
if (strcmp(target, "default") == 0) {
|
||||
if (strcmp(target, bb_INET_default) == 0) {
|
||||
prefix_len = 0;
|
||||
memset(&sa6, 0, sizeof(sa6));
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user