ngx_openssl_create_conf

ngx_openssl_create_conf

声明在 src\event\ngx_event_openssl.c

复制代码
static void *ngx_openssl_create_conf(ngx_cycle_t *cycle);

定义在 src\event\ngx_event_openssl.c

复制代码
static void *
ngx_openssl_create_conf(ngx_cycle_t *cycle)
{
    ngx_openssl_conf_t  *oscf;

    oscf = ngx_pcalloc(cycle->pool, sizeof(ngx_openssl_conf_t));
    if (oscf == NULL) {
        return NULL;
    }

    /*
     * set by ngx_pcalloc():
     *
     *     oscf->engine = 0;
     */

    return oscf;
}

就是从内存池中分配一个 ngx_openssl_conf_t 结构体大小的内存,然后返回内存地址

ngx_openssl_conf_t -CSDN博客

相关推荐
2301_804947584 小时前
nginx的https的搭建
运维·nginx·https
K***43064 小时前
httpslocalhostindex 配置的nginx,一刷新就报404了
运维·nginx
h***67375 小时前
Prometheus(普罗米修斯)----- Nginx监控
运维·nginx·prometheus
wadesir5 小时前
Nginx配置文件CPU优化(从零开始提升Web服务器性能)
服务器·前端·nginx
j***49565 小时前
Linux(CentOS)安装 Nginx
linux·nginx·centos
SoleMotive.5 小时前
1、nginx反向代理了解吗?怎么配置nginx服务器?nginx负载均衡的算法都有哪些? 2、后端服务器宕机了,nginx服务器是怎么检查的
服务器·nginx·负载均衡
l***067 小时前
Ubuntu 系统下安装 Nginx
数据库·nginx·ubuntu
阿星智力囊18 小时前
Thinkphp6+nginx环境报错信息不显示,接口直接报500和CORS跨域(错误的引导方向),真坑啊
运维·nginx·php·thinkphp6
L***86531 天前
Failed to restart nginx.service Unit nginx.service not found
运维·nginx