加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
fe-secure-common.h 798 Bytes
一键复制 编辑 原始数据 按行查看 历史
kssenii 提交于 2021-07-01 23:39 . Add all files from scratch
/*-------------------------------------------------------------------------
*
* fe-secure-common.h
*
* common implementation-independent SSL support code
*
* Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* src/interfaces/libpq/fe-secure-common.h
*
*-------------------------------------------------------------------------
*/
#ifndef FE_SECURE_COMMON_H
#define FE_SECURE_COMMON_H
#include "libpq-fe.h"
extern int pq_verify_peer_name_matches_certificate_name(PGconn *conn,
const char *namedata, size_t namelen,
char **store_name);
extern bool pq_verify_peer_name_matches_certificate(PGconn *conn);
#endif /* FE_SECURE_COMMON_H */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化