blob: a59b352f1962b193c0f09c2595b3a66ae62a3c08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*-------------------------------------------------------------------------
*
* proxy_utils.h
*
*
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 2010-2012 Postgres-XC Development Group
*
* src/include/gtm/proxy_utils.h
*
*-------------------------------------------------------------------------
*/
#ifndef PROXY_UTILS_H
#define PROXY_UTILS_H
#include "gtm/libpq-int.h"
bool gtm_standby_check_communication_error(int *, GTM_Conn *);
#endif /* PROXY_UTILS_H */
|