HomeSort by: relevance | last modified time | path
    Searched defs:certfile (Results 1 - 3 of 3) sorted by relevancy

  /src/usr.sbin/syslogd/
tls.h 138 char *certfile; /* filename of peer cert */ member in struct:tls_conn_settings
syslogd.h 397 char *certfile; /* file with own certificate */ member in struct:tls_global_options_t
tls.c 153 const char *certfilename = tls_opt.certfile;
161 FILE *certfile = NULL; local in function:init_global_TLS_CTX
188 && !(certfile = fopen(certfilename, "r"))) {
215 if (certfile)
216 (void)fclose(certfile);
591 FILE *certfile; local in function:read_certfile
599 if (!(certfile = fopen(certfilename, "rb"))) {
605 if (!(*cert = PEM_read_X509(certfile, NULL, NULL, NULL))
606 && !(*cert = d2i_X509_fp(certfile, NULL))) {
609 (void)fclose(certfile);
1993 FILE *certfile, *keyfile; local in function:write_x509files
    [all...]

Completed in 16 milliseconds