Constify argument of in6_getscope().
This commit is contained in:
parent
dfbd18b5fe
commit
8066b881af
@ -453,7 +453,7 @@ in6_clearscope(struct in6_addr *in6)
|
||||
* Return the scope identifier or zero.
|
||||
*/
|
||||
uint16_t
|
||||
in6_getscope(struct in6_addr *in6)
|
||||
in6_getscope(const struct in6_addr *in6)
|
||||
{
|
||||
|
||||
if (IN6_IS_SCOPE_LINKLOCAL(in6) || IN6_IS_ADDR_MC_INTFACELOCAL(in6))
|
||||
|
@ -63,7 +63,7 @@ int sa6_checkzone(struct sockaddr_in6 *);
|
||||
int sa6_checkzone_ifp(struct ifnet *, struct sockaddr_in6 *);
|
||||
int in6_setscope(struct in6_addr *, struct ifnet *, u_int32_t *);
|
||||
int in6_clearscope(struct in6_addr *);
|
||||
uint16_t in6_getscope(struct in6_addr *);
|
||||
uint16_t in6_getscope(const struct in6_addr *);
|
||||
uint32_t in6_getscopezone(const struct ifnet *, int);
|
||||
void in6_splitscope(const struct in6_addr *, struct in6_addr *, uint32_t *);
|
||||
struct ifnet* in6_getlinkifnet(uint32_t);
|
||||
|
Loading…
x
Reference in New Issue
Block a user