diff options
| author | Lou Berger <lberger@labn.net> | 2022-10-16 15:19:37 +0000 |
|---|---|---|
| committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2022-10-29 14:38:46 +0000 |
| commit | 3e95e20a6acb39c543261a36921de4fca23fdec9 (patch) | |
| tree | e6b7034228089fea1d19cdc34866c29fc35749b6 /ospfclient/ospf_apiclient.c | |
| parent | d6eda57ab057d3c44373428a3e23c5c53e4bc105 (diff) | |
ospfd/ospfclient: add option to flush/withdrawal with zero length
default behavior is unchanged, i.e., to not zero
Signed-off-by: Lou Berger <lberger@labn.net>
(cherry picked from commit 2f30cb25747dc9657046c59ca1f378203192de26)
Diffstat (limited to 'ospfclient/ospf_apiclient.c')
| -rw-r--r-- | ospfclient/ospf_apiclient.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ospfclient/ospf_apiclient.c b/ospfclient/ospf_apiclient.c index 155e3fab40..4ce65e379a 100644 --- a/ospfclient/ospf_apiclient.c +++ b/ospfclient/ospf_apiclient.c @@ -488,7 +488,8 @@ int ospf_apiclient_lsa_originate(struct ospf_apiclient *oclient, int ospf_apiclient_lsa_delete(struct ospf_apiclient *oclient, struct in_addr addr, uint8_t lsa_type, - uint8_t opaque_type, uint32_t opaque_id) + uint8_t opaque_type, uint32_t opaque_id, + uint8_t flags) { struct msg *msg; int rc; @@ -503,7 +504,7 @@ int ospf_apiclient_lsa_delete(struct ospf_apiclient *oclient, /* opaque_id is in host byte order and will be converted * to network byte order by new_msg_delete_request */ msg = new_msg_delete_request(ospf_apiclient_get_seqnr(), addr, lsa_type, - opaque_type, opaque_id); + opaque_type, opaque_id, flags); rc = ospf_apiclient_send_request(oclient, msg); return rc; |
