diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-09-18 23:55:34 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-09-19 13:34:06 -0400 | 
| commit | b0b69e59f463b696d0e20f30c46c59c9cf0044b1 (patch) | |
| tree | 479eb980f6eb740d6399daa383a20d175a93ff0f /nhrpd/nhrp_interface.c | |
| parent | ddbf3e60604019d4b38d51226700e2244cc531b6 (diff) | |
*: Convert interface_down to interface down callback
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'nhrpd/nhrp_interface.c')
| -rw-r--r-- | nhrpd/nhrp_interface.c | 14 | 
1 files changed, 2 insertions, 12 deletions
diff --git a/nhrpd/nhrp_interface.c b/nhrpd/nhrp_interface.c index 29e6144779..ecf4bd7504 100644 --- a/nhrpd/nhrp_interface.c +++ b/nhrpd/nhrp_interface.c @@ -334,16 +334,11 @@ int nhrp_ifp_up(struct interface *ifp)  	return 0;  } -int nhrp_interface_down(ZAPI_CALLBACK_ARGS) +int nhrp_ifp_down(struct interface *ifp)  { -	struct interface *ifp; - -	ifp = zebra_interface_state_read(zclient->ibuf, vrf_id); -	if (ifp == NULL) -		return 0; -  	debugf(NHRP_DEBUG_IF, "if-down: %s", ifp->name);  	nhrp_interface_update(ifp); +  	return 0;  } @@ -424,11 +419,6 @@ void nhrp_interface_set_source(struct interface *ifp, const char *ifname)  	nhrp_interface_update_nbma(ifp);  } -int nhrp_ifp_down(struct interface *ifp) -{ -	return 0; -} -  int nhrp_ifp_destroy(struct interface *ifp)  {  	return 0;  | 
