ip xfrm state: Allow different selector family
Do not enforce the selector of a state to have the same address family as the id. This makes it possible to configure inter family states. Signed-off-by: Thomas Egerer <hakke_007@gmx.de>
This commit is contained in:
parent
4cd20da16f
commit
23d5b0d551
|
|
@ -294,7 +294,9 @@ static int xfrm_state_modify(int cmd, unsigned flags, int argc, char **argv)
|
|||
xfrm_state_flag_parse(&req.xsinfo.flags, &argc, &argv);
|
||||
} else if (strcmp(*argv, "sel") == 0) {
|
||||
NEXT_ARG();
|
||||
preferred_family = AF_UNSPEC;
|
||||
xfrm_selector_parse(&req.xsinfo.sel, &argc, &argv);
|
||||
preferred_family = req.xsinfo.sel;
|
||||
} else if (strcmp(*argv, "limit") == 0) {
|
||||
NEXT_ARG();
|
||||
xfrm_lifetime_cfg_parse(&req.xsinfo.lft, &argc, &argv);
|
||||
|
|
|
|||
Loading…
Reference in New Issue