--- embedaddon/quagga/lib/zclient.h 2012/02/21 17:26:12 1.1.1.1 +++ embedaddon/quagga/lib/zclient.h 2012/10/09 09:22:28 1.1.1.2 @@ -22,6 +22,9 @@ #ifndef _ZEBRA_ZCLIENT_H #define _ZEBRA_ZCLIENT_H +/* For struct zapi_ipv{4,6}. */ +#include "prefix.h" + /* For struct interface and struct connected. */ #include "if.h" @@ -95,7 +98,7 @@ struct zserv_header * always set to 255 in new zserv. */ uint8_t version; -#define ZSERV_VERSION 1 +#define ZSERV_VERSION 2 uint16_t command; }; @@ -108,6 +111,8 @@ struct zapi_ipv4 u_char message; + safi_t safi; + u_char nexthop_num; struct in_addr **nexthop; @@ -127,12 +132,9 @@ extern void zclient_stop (struct zclient *); extern void zclient_reset (struct zclient *); extern void zclient_free (struct zclient *); -/* Get TCP socket connection to zebra daemon at loopback address. */ -extern int zclient_socket (void); +extern int zclient_socket_connect (struct zclient *); +extern void zclient_serv_path_set (char *path); -/* Get unix stream socket connection to zebra daemon at given path. */ -extern int zclient_socket_un (const char *); - /* Send redistribute command to zebra daemon. Do not update zclient state. */ extern int zebra_redistribute_send (int command, struct zclient *, int type); @@ -167,6 +169,8 @@ struct zapi_ipv6 u_char flags; u_char message; + + safi_t safi; u_char nexthop_num; struct in6_addr **nexthop;