mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 21:04:56 +00:00
added support /prefix for IPV4 form IPV6 code. Close bug 461
This commit is contained in:
parent
08c5a1789b
commit
5775aa2ef6
@ -184,14 +184,33 @@ static void INET_setroute(int action, char **args)
|
|||||||
|
|
||||||
{
|
{
|
||||||
const char *target = *args++;
|
const char *target = *args++;
|
||||||
|
char *prefix;
|
||||||
|
|
||||||
|
/* recognize x.x.x.x/mask format. */
|
||||||
|
prefix = strchr(target, '/');
|
||||||
|
if(prefix) {
|
||||||
|
int prefix_len;
|
||||||
|
|
||||||
|
prefix_len = bb_xgetularg10_bnd(prefix+1, 0, 32);
|
||||||
|
mask_in_addr(rt) = htonl( ~ (0xffffffffUL >> prefix_len));
|
||||||
|
*prefix = '\0';
|
||||||
|
#if HAVE_NEW_ADDRT
|
||||||
|
rt.rt_genmask.sa_family = AF_INET;
|
||||||
|
#endif
|
||||||
|
} else {
|
||||||
|
/* Default netmask. */
|
||||||
|
netmask = bb_INET_default;
|
||||||
|
}
|
||||||
/* Prefer hostname lookup is -host flag (xflag==1) was given. */
|
/* Prefer hostname lookup is -host flag (xflag==1) was given. */
|
||||||
isnet = INET_resolve(target, (struct sockaddr_in *) &rt.rt_dst,
|
isnet = INET_resolve(target, (struct sockaddr_in *) &rt.rt_dst,
|
||||||
(xflag & HOST_FLAG));
|
(xflag & HOST_FLAG));
|
||||||
if (isnet < 0) {
|
if (isnet < 0) {
|
||||||
bb_error_msg_and_die("resolving %s", target);
|
bb_error_msg_and_die("resolving %s", target);
|
||||||
}
|
}
|
||||||
|
if(prefix) {
|
||||||
|
/* do not destroy prefix for process args */
|
||||||
|
*prefix = '/';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (xflag) { /* Reinit isnet if -net or -host was specified. */
|
if (xflag) { /* Reinit isnet if -net or -host was specified. */
|
||||||
@ -201,8 +220,6 @@ static void INET_setroute(int action, char **args)
|
|||||||
/* Fill in the other fields. */
|
/* Fill in the other fields. */
|
||||||
rt.rt_flags = ((isnet) ? RTF_UP : (RTF_UP | RTF_HOST));
|
rt.rt_flags = ((isnet) ? RTF_UP : (RTF_UP | RTF_HOST));
|
||||||
|
|
||||||
netmask = bb_INET_default;
|
|
||||||
|
|
||||||
while (*args) {
|
while (*args) {
|
||||||
int k = kw_lookup(tbl_ipvx, &args);
|
int k = kw_lookup(tbl_ipvx, &args);
|
||||||
const char *args_m1 = args[-1];
|
const char *args_m1 = args[-1];
|
||||||
|
Loading…
Reference in New Issue
Block a user