diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-02-20 12:14:03 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-03-06 16:27:01 -0500 |
| commit | f4e74bd0389c073d2940615b812bf397b9147dcc (patch) | |
| tree | 027688fde0603a5bc37ab1fcfb09fe977ff090f5 /pimd/pim_instance.h | |
| parent | 2ca35b64373e7efbe2541c77e0ebc07dfc1b25a5 (diff) | |
pimd: Add `ip pim register-accept-list PLIST` command
When pim receives a register packet, we will apply the
received source to the prefix list. If accepted normal
processing continues. If denied we will send a register
stop message to the source.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_instance.h')
| -rw-r--r-- | pimd/pim_instance.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pimd/pim_instance.h b/pimd/pim_instance.h index 7b1fd2e172..48dc2d9530 100644 --- a/pimd/pim_instance.h +++ b/pimd/pim_instance.h @@ -135,6 +135,9 @@ struct pim_instance { char *plist; } spt; + /* The name of the register-accept prefix-list */ + char *register_plist; + struct hash *rpf_hash; void *ssm_info; /* per-vrf SSM configuration */ |
