diff options
author | Renato Westphal <renato@cvs.openbsd.org> | 2016-01-15 12:41:10 +0000 |
---|---|---|
committer | Renato Westphal <renato@cvs.openbsd.org> | 2016-01-15 12:41:10 +0000 |
commit | ead8875a9047d57e61dafbc14a3d5a4da9346e06 (patch) | |
tree | c5f5025bda159a69915e534ef580eea84e8c6ef0 /usr.sbin/eigrpd/eigrpd.h | |
parent | 5b3c09374d9d177f39604e370a448ce925336710 (diff) |
Minor tweaks.
Diffstat (limited to 'usr.sbin/eigrpd/eigrpd.h')
-rw-r--r-- | usr.sbin/eigrpd/eigrpd.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/eigrpd/eigrpd.h b/usr.sbin/eigrpd/eigrpd.h index dd4bc9f3fef..bf2e03293f6 100644 --- a/usr.sbin/eigrpd/eigrpd.h +++ b/usr.sbin/eigrpd/eigrpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: eigrpd.h,v 1.7 2016/01/15 12:36:41 renato Exp $ */ +/* $OpenBSD: eigrpd.h,v 1.8 2016/01/15 12:41:09 renato Exp $ */ /* * Copyright (c) 2015 Renato Westphal <renato@openbsd.org> @@ -456,8 +456,9 @@ in_addr_t prefixlen2mask(uint8_t); struct in6_addr *prefixlen2mask6(uint8_t); void eigrp_applymask(int, union eigrpd_addr *, const union eigrpd_addr *, int); -int eigrp_addrcmp(int, union eigrpd_addr *, union eigrpd_addr *); -int eigrp_addrisset(int, union eigrpd_addr *); +int eigrp_addrcmp(int, const union eigrpd_addr *, + const union eigrpd_addr *); +int eigrp_addrisset(int, const union eigrpd_addr *); int eigrp_prefixcmp(int, const union eigrpd_addr *, const union eigrpd_addr *, uint8_t); void embedscope(struct sockaddr_in6 *); |