MCPcopy Create free account
hub / github.com/apache/cloudberry / pqsecure_open_client

Function pqsecure_open_client

src/interfaces/libpq/fe-secure.c:183–192  ·  view source on GitHub ↗

* Begin or continue negotiating a secure session. */

Source from the content-addressed store, hash-verified

181 * Begin or continue negotiating a secure session.
182 */
183PostgresPollingStatusType
184pqsecure_open_client(PGconn *conn)
185{
186#ifdef USE_SSL
187 return pgtls_open_client(conn);
188#else
189 /* shouldn't get here */
190 return PGRES_POLLING_FAILED;
191#endif
192}
193
194/*
195 * Close secure session.

Callers 1

PQconnectPollFunction · 0.85

Calls 1

pgtls_open_clientFunction · 0.85

Tested by

no test coverage detected