mirror of
https://github.com/postgres/postgres.git
synced 2025-05-06 19:59:18 +03:00
Switch position of some declarations in libpq.h
This makes the header more consistent with the surroundings, with declarations associated to a given file grouped together. Author: Daniel Gustafsson Discussion: https://postgr.es/m/20190608012439.GB7228@paquier.xyz
This commit is contained in:
parent
b880e22de4
commit
cf4263cc6c
@ -53,6 +53,8 @@ extern const PGDLLIMPORT PQcommMethods *PqCommMethods;
|
||||
/*
|
||||
* prototypes for functions in pqcomm.c
|
||||
*/
|
||||
extern WaitEventSet *FeBeWaitSet;
|
||||
|
||||
extern int StreamServerPort(int family, char *hostName,
|
||||
unsigned short portNumber, char *unixSocketDir,
|
||||
pgsocket ListenSocket[], int MaxListen);
|
||||
@ -83,6 +85,9 @@ extern char *ssl_crl_file;
|
||||
extern char *ssl_dh_params_file;
|
||||
extern char *ssl_passphrase_command;
|
||||
extern bool ssl_passphrase_command_supports_reload;
|
||||
#ifdef USE_SSL
|
||||
extern bool ssl_loaded_verify_locations;
|
||||
#endif
|
||||
|
||||
extern int secure_initialize(bool isServerStart);
|
||||
extern bool secure_loaded_verify_locations(void);
|
||||
@ -93,14 +98,14 @@ extern ssize_t secure_read(Port *port, void *ptr, size_t len);
|
||||
extern ssize_t secure_write(Port *port, void *ptr, size_t len);
|
||||
extern ssize_t secure_raw_read(Port *port, void *ptr, size_t len);
|
||||
extern ssize_t secure_raw_write(Port *port, const void *ptr, size_t len);
|
||||
|
||||
/*
|
||||
* prototypes for functions in be-secure-gssapi.c
|
||||
*/
|
||||
#ifdef ENABLE_GSS
|
||||
extern ssize_t secure_open_gssapi(Port *port);
|
||||
#endif
|
||||
|
||||
extern bool ssl_loaded_verify_locations;
|
||||
|
||||
extern WaitEventSet *FeBeWaitSet;
|
||||
|
||||
/* GUCs */
|
||||
extern char *SSLCipherSuites;
|
||||
extern char *SSLECDHCurve;
|
||||
|
Loading…
x
Reference in New Issue
Block a user