diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-10-11 14:31:35 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-10-24 00:09:22 +0200 |
commit | e4bd522a3144bcdad9124cf7d8ca2f4eadacb3e4 (patch) | |
tree | 23f02f8d610618ca94a38834e2885bb5944119f3 /zebra/rtadv.h | |
parent | zebra: Always read full zapi message in ptm code (diff) | |
download | frr-e4bd522a3144bcdad9124cf7d8ca2f4eadacb3e4.tar.xz frr-e4bd522a3144bcdad9124cf7d8ca2f4eadacb3e4.zip |
zebra: No need to pass sock descriptor around.
Standardize the api to read zapi requests from protocols.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/rtadv.h')
-rw-r--r-- | zebra/rtadv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/rtadv.h b/zebra/rtadv.h index dcaeb3ed2..9ec1bffa8 100644 --- a/zebra/rtadv.h +++ b/zebra/rtadv.h @@ -103,7 +103,7 @@ typedef enum { extern void rtadv_init(struct zebra_ns *); extern void rtadv_terminate(struct zebra_ns *); extern void rtadv_cmd_init(void); -extern void zebra_interface_radv_set(struct zserv *client, int sock, +extern void zebra_interface_radv_set(struct zserv *client, u_short length, struct zebra_vrf *zvrf, int enable); |