* Begin or continue negotiating a secure session. */
| 181 | * Begin or continue negotiating a secure session. |
| 182 | */ |
| 183 | PostgresPollingStatusType |
| 184 | pqsecure_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. |
no test coverage detected