diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-12-06 03:46:37 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-12-06 03:46:37 +0000 |
commit | 8fc86dd593b9e9a2b24779e263ad33c37e15c9f9 (patch) | |
tree | 39402a6de176f209744c1fdedbcc18c28352f34e /src/include | |
parent | 87cba401a48feff7e547f59fb7ead1a1ab99042a (diff) | |
download | postgresql-8fc86dd593b9e9a2b24779e263ad33c37e15c9f9.tar.gz postgresql-8fc86dd593b9e9a2b24779e263ad33c37e15c9f9.zip |
We have just finished porting the old KAME IPv6 patch over to
postgresql version 7.3, but yea... this patch adds full IPv6
support to postgres. I've tested it out on 7.2.3 and has
been running perfectly stable.
CREDITS:
The KAME Project (Initial patch)
Nigel Kukard <nkukard@lbsd.net>
Johan Jordaan <johanj@lando.co.za>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/libpq/libpq.h | 3 | ||||
-rw-r--r-- | src/include/libpq/pqcomm.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/include/libpq/libpq.h b/src/include/libpq/libpq.h index 5e4db4d2430..b0b1041be18 100644 --- a/src/include/libpq/libpq.h +++ b/src/include/libpq/libpq.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: libpq.h,v 1.52 2002/09/04 23:31:35 tgl Exp $ + * $Id: libpq.h,v 1.53 2002/12/06 03:46:32 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,6 +19,7 @@ #include "lib/stringinfo.h" #include "libpq/libpq-be.h" +#include "libpq/v6util.h" /* ---------------- * PQArgBlock diff --git a/src/include/libpq/pqcomm.h b/src/include/libpq/pqcomm.h index 4066c23e0e4..a84978c5705 100644 --- a/src/include/libpq/pqcomm.h +++ b/src/include/libpq/pqcomm.h @@ -9,7 +9,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pqcomm.h,v 1.70 2002/09/04 20:31:42 momjian Exp $ + * $Id: pqcomm.h,v 1.71 2002/12/06 03:46:33 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -47,6 +47,7 @@ typedef union SockAddr { struct sockaddr sa; struct sockaddr_in in; + struct sockaddr_in6 in6; struct sockaddr_un un; } SockAddr; |