]> git.proxmox.com Git - mirror_frr.git/blobdiff - zebra/zebra_mroute.h
Merge pull request #3384 from donaldsharp/topotests
[mirror_frr.git] / zebra / zebra_mroute.h
index c0bac43a812a2bf5bb8b648709ce870cec291c70..33851536005faa3dc64b013ae5dc48840c8b985d 100644 (file)
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with GNU Zebra; see the file COPYING.  If not, write to the Free
- * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- * 02111-1307, USA.
+ * You should have received a copy of the GNU General Public License along
+ * with this program; see the file COPYING; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #ifndef __ZEBRA_MROUTE_H__
 #define __ZEBRA_MROUTE_H__
 
+#include "zebra/zserv.h"
+
 struct mcast_route_data {
-  struct prefix_sg sg;
-  unsigned int ifindex;
-  unsigned long long lastused;
+       struct prefix_sg sg;
+       unsigned int ifindex;
+       unsigned long long lastused;
 };
 
-int zebra_ipmr_route_stats (struct zserv *client, int sock, u_short length, struct zebra_vrf *zvf);
+void zebra_ipmr_route_stats(ZAPI_HANDLER_ARGS);
 
 #endif
-