svn commit: r221549 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Fri May 6 20:40:34 UTC 2011


Author: tuexen
Date: Fri May  6 20:40:33 2011
New Revision: 221549
URL: http://svn.freebsd.org/changeset/base/221549

Log:
  Change the name of an internal structure, since the name
  is used by a structure of the (new) SCTP API.
  
  MFC after: 1 week.

Modified:
  head/sys/netinet/sctp_auth.h

Modified: head/sys/netinet/sctp_auth.h
==============================================================================
--- head/sys/netinet/sctp_auth.h	Fri May  6 20:37:07 2011	(r221548)
+++ head/sys/netinet/sctp_auth.h	Fri May  6 20:40:33 2011	(r221549)
@@ -89,7 +89,7 @@ typedef struct sctp_hmaclist {
 }             sctp_hmaclist_t;
 
 /* authentication info */
-typedef struct sctp_authinfo {
+typedef struct sctp_authinformation {
 	sctp_key_t *random;	/* local random key (concatenated) */
 	uint32_t random_len;	/* local random number length for param */
 	sctp_key_t *peer_random;/* peer's random key (concatenated) */
@@ -98,7 +98,7 @@ typedef struct sctp_authinfo {
 	uint16_t active_keyid;	/* active send keyid */
 	uint16_t assoc_keyid;	/* current send keyid (cached) */
 	uint16_t recv_keyid;	/* last recv keyid (cached) */
-}             sctp_authinfo_t;
+}                    sctp_authinfo_t;
 
 
 


More information about the svn-src-head mailing list