|
8 | 8 | * platform, we'll need to split this file and provide a separate configure
|
9 | 9 | * test for getnameinfo().
|
10 | 10 | *
|
11 |
| - * Windows may or may not have these routines, so we handle Windowsspecial |
| 11 | + * Windows may or may not have these routines, so we handle Windowsspecially |
12 | 12 | * by dynamically checking for their existence. If they already exist, we
|
13 | 13 | * use the Windows native routines, but if not, we use our own.
|
14 | 14 | *
|
15 | 15 | *
|
16 | 16 | * Copyright (c) 2003-2006, PostgreSQL Global Development Group
|
17 | 17 | *
|
18 | 18 | * IDENTIFICATION
|
19 |
| - * $PostgreSQL: pgsql/src/port/getaddrinfo.c,v 1.24 2006/06/07 22:24:46 momjian Exp $ |
| 19 | + * $PostgreSQL: pgsql/src/port/getaddrinfo.c,v 1.25 2006/07/16 20:28:01 tgl Exp $ |
20 | 20 | *
|
21 | 21 | *-------------------------------------------------------------------------
|
22 | 22 | */
|
|
30 | 30 | #include<arpa/inet.h>
|
31 | 31 |
|
32 | 32 | #include"getaddrinfo.h"
|
| 33 | +#include"libpq/pqcomm.h"/* needed for struct sockaddr_storage */ |
33 | 34 |
|
34 | 35 |
|
35 | 36 | #ifdefWIN32
|
|