1
0
mirror of http://deavmi.assigned.network/git/CRXN/docs synced 2025-02-17 13:36:51 +00:00

Merge pull request 'Adapt the documentation to pass more strict functional testing in bird without warning' (#46) from mark22k/crxn-docs:bird-strict-function into master

Reviewed-on: https://codeberg.org/CRXN/docs/pulls/46
This commit is contained in:
Marek Küthe 2024-07-01 19:51:39 +00:00
commit e8c3c62d0b
2 changed files with 6 additions and 6 deletions

View File

@ -50,11 +50,11 @@ hostname HOSTNAME;
ipv6 table crxn; ipv6 table crxn;
function is_self_net() { function is_self_net() -> bool {
return net ~ OWNNETSET; return net ~ OWNNETSET;
} }
function is_valid_network() { function is_valid_network() -> bool {
return net ~ [ return net ~ [
fd00::/8{44,64} fd00::/8{44,64}
]; ];
@ -132,14 +132,14 @@ Here an IPv6 routing table with the name `crxn` is created. Alternatively, you c
Next comes a set of utility functions that will later help us build the filters. Next comes a set of utility functions that will later help us build the filters.
``` ```
function is_self_net() { function is_self_net() -> bool {
return net ~ OWNNETSET; return net ~ OWNNETSET;
} }
``` ```
This function returns `true` if the net is the own, otherwise `false`. This function returns `true` if the net is the own, otherwise `false`.
``` ```
function is_valid_network() { function is_valid_network() -> bool {
return net ~ [ return net ~ [
fd00::/8{44,64} fd00::/8{44,64}
]; ];

View File

@ -12,11 +12,11 @@ define CRXN_MAXLEN = [
include "<path-to-file-2>"; include "<path-to-file-2>";
]; ];
function is_crxn_net() { function is_crxn_net() -> bool {
return net ~ CRXN_IPs; return net ~ CRXN_IPs;
} }
function is_maxlen_valid() { function is_maxlen_valid() -> bool {
return net ~ CRXN_MAXLEN; return net ~ CRXN_MAXLEN;
} }
``` ```