lib.types.net.ip*: add prefixLength
This commit is contained in:
parent
4a1bec5d9b
commit
4adca5a984
@ -146,6 +146,14 @@ rec {
|
|||||||
}.${config._module.args.name} or {
|
}.${config._module.args.name} or {
|
||||||
default = "${ip4.config.addr}/32";
|
default = "${ip4.config.addr}/32";
|
||||||
});
|
});
|
||||||
|
prefixLength = mkOption ({
|
||||||
|
type = uint;
|
||||||
|
} // {
|
||||||
|
retiolum.default = 16;
|
||||||
|
wiregrill.default = 16;
|
||||||
|
}.${config._module.args.name} or {
|
||||||
|
default = 32;
|
||||||
|
});
|
||||||
};
|
};
|
||||||
}));
|
}));
|
||||||
default = null;
|
default = null;
|
||||||
@ -165,6 +173,14 @@ rec {
|
|||||||
}.${config._module.args.name} or {
|
}.${config._module.args.name} or {
|
||||||
default = "${ip6.config.addr}/128";
|
default = "${ip6.config.addr}/128";
|
||||||
});
|
});
|
||||||
|
prefixLength = mkOption ({
|
||||||
|
type = uint;
|
||||||
|
} // {
|
||||||
|
retiolum.default = 32;
|
||||||
|
wiregrill.default = 32;
|
||||||
|
}.${config._module.args.name} or {
|
||||||
|
default = 128;
|
||||||
|
});
|
||||||
};
|
};
|
||||||
}));
|
}));
|
||||||
default = null;
|
default = null;
|
||||||
|
Loading…
Reference in New Issue
Block a user