pgpool is a connection pool server for PostgreSQL. pgpool runs between PostgreSQL's clients(front ends) and servers(back ends). A PostgreSQL client can connect to pgpool as if it were a standard PostgreSQL server. pgpool caches the connection to PostgreSQL server to reduce the overhead to establish the connection to it. WWW: http://pgpool.net/ PR: 232957 Reported by: Franco Ricci <franco.ricc@gmail.com> Approved by: tz (implicit) Sponsored by: Netzkommune GmbH
11 lines
254 B
C
11 lines
254 B
C
--- src/auth/pool_hba.c.orig 2018-04-11 05:37:54 UTC
|
|
+++ src/auth/pool_hba.c
|
|
@@ -29,6 +29,8 @@
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <netdb.h>
|
|
+#include <arpa/inet.h>
|
|
+#include <netinet/in.h>
|
|
|
|
#include "pool.h"
|
|
#include "auth/pool_hba.h"
|