Author: tuexen
Date: Thu Mar  7 23:18:35 2013
New Revision: 247964
URL: http://svnweb.freebsd.org/changeset/base/247964

Log:
  MFC r235916:
  
  Introduce in6_getscope() to allow more effective checksum
  computations without the need to copy the address to clear the
  scope.

Modified:
  stable/8/sys/netinet6/scope6.c
  stable/8/sys/netinet6/scope6_var.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/netinet6/   (props changed)

Modified: stable/8/sys/netinet6/scope6.c
==============================================================================
--- stable/8/sys/netinet6/scope6.c      Thu Mar  7 22:54:28 2013        
(r247963)
+++ stable/8/sys/netinet6/scope6.c      Thu Mar  7 23:18:35 2013        
(r247964)
@@ -486,3 +486,16 @@ in6_clearscope(struct in6_addr *in6)
 
        return (modified);
 }
+
+/*
+ * Return the scope identifier or zero.
+ */
+uint16_t
+in6_getscope(struct in6_addr *in6)
+{
+
+       if (IN6_IS_SCOPE_LINKLOCAL(in6) || IN6_IS_ADDR_MC_INTFACELOCAL(in6))
+               return (in6->s6_addr16[1]);
+
+       return (0);
+}

Modified: stable/8/sys/netinet6/scope6_var.h
==============================================================================
--- stable/8/sys/netinet6/scope6_var.h  Thu Mar  7 22:54:28 2013        
(r247963)
+++ stable/8/sys/netinet6/scope6_var.h  Thu Mar  7 23:18:35 2013        
(r247964)
@@ -54,6 +54,7 @@ int   sa6_embedscope __P((struct sockaddr_
 int    sa6_recoverscope __P((struct sockaddr_in6 *));
 int    in6_setscope __P((struct in6_addr *, struct ifnet *, u_int32_t *));
 int    in6_clearscope __P((struct in6_addr *));
+uint16_t in6_getscope(struct in6_addr *);
 #endif /* _KERNEL */
 
 #endif /* _NETINET6_SCOPE6_VAR_H_ */
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to