- (dtucker) [openbsd-compat/fake-rfc2553.h] Add sin6_scope_id to sockaddr_in6

since the new CIDR code in addmatch.c references it.
This commit is contained in:
Darren Tucker 2008-06-10 23:52:51 +10:00
parent 10f9242b86
commit 9d3739daa1
2 changed files with 5 additions and 2 deletions

View File

@ -32,6 +32,8 @@
- dtucker@cvs.openbsd.org 2008/06/10 05:23:32
[regress/addrmatch.sh regress/Makefile]
Regress test for Match CIDR rules. ok djm@
- (dtucker) [openbsd-compat/fake-rfc2553.h] Add sin6_scope_id to sockaddr_in6
since the new CIDR code in addmatch.c references it.
20080609
- (dtucker) OpenBSD CVS Sync
@ -4118,4 +4120,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@
$Id: ChangeLog,v 1.4955 2008/06/10 13:16:46 dtucker Exp $
$Id: ChangeLog,v 1.4956 2008/06/10 13:52:51 dtucker Exp $

View File

@ -1,4 +1,4 @@
/* $Id: fake-rfc2553.h,v 1.14 2008/02/25 09:21:20 dtucker Exp $ */
/* $Id: fake-rfc2553.h,v 1.15 2008/06/10 13:52:51 dtucker Exp $ */
/*
* Copyright (C) 2000-2003 Damien Miller. All rights reserved.
@ -77,6 +77,7 @@ struct sockaddr_in6 {
u_int16_t sin6_port;
u_int32_t sin6_flowinfo;
struct in6_addr sin6_addr;
u_int32_t sin6_scope_id;
};
#endif /* !HAVE_STRUCT_SOCKADDR_IN6 */