nxt_service.c (12:477899a6661b) nxt_service.c (65:10688b89aa16)
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#include <nxt_main.h>
8

--- 44 unchanged lines hidden (view full) ---

53 { "SSL/TLS", "CyaSSL", &nxt_cyassl_lib },
54 { "SSL/TLS", "cyassl", &nxt_cyassl_lib },
55#endif
56
57};
58
59
60nxt_array_t *
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#include <nxt_main.h>
8

--- 44 unchanged lines hidden (view full) ---

53 { "SSL/TLS", "CyaSSL", &nxt_cyassl_lib },
54 { "SSL/TLS", "cyassl", &nxt_cyassl_lib },
55#endif
56
57};
58
59
60nxt_array_t *
61nxt_services_init(nxt_mem_pool_t *mp)
61nxt_services_init(nxt_mp_t *mp)
62{
63 nxt_uint_t n;
64 nxt_array_t *services;
65 nxt_service_t *s;
66 const nxt_service_t *service;
67
68 services = nxt_array_create(mp, 32, sizeof(nxt_service_t));
69

--- 96 unchanged lines hidden ---
62{
63 nxt_uint_t n;
64 nxt_array_t *services;
65 nxt_service_t *s;
66 const nxt_service_t *service;
67
68 services = nxt_array_create(mp, 32, sizeof(nxt_service_t));
69

--- 96 unchanged lines hidden ---