• Home
  • Raw
  • Download

Lines Matching refs:err

112 	if (x == NULL) goto err;  in SSL_SESSION_print()
113 if (BIO_puts(bp,"SSL-Session:\n") <= 0) goto err; in SSL_SESSION_print()
130 if (BIO_printf(bp," Protocol : %s\n",s) <= 0) goto err; in SSL_SESSION_print()
137 goto err; in SSL_SESSION_print()
142 goto err; in SSL_SESSION_print()
148 goto err; in SSL_SESSION_print()
150 if (BIO_puts(bp," Session-ID: ") <= 0) goto err; in SSL_SESSION_print()
153 if (BIO_printf(bp,"%02X",x->session_id[i]) <= 0) goto err; in SSL_SESSION_print()
155 if (BIO_puts(bp,"\n Session-ID-ctx: ") <= 0) goto err; in SSL_SESSION_print()
159 goto err; in SSL_SESSION_print()
161 if (BIO_puts(bp,"\n Master-Key: ") <= 0) goto err; in SSL_SESSION_print()
164 if (BIO_printf(bp,"%02X",x->master_key[i]) <= 0) goto err; in SSL_SESSION_print()
166 if (BIO_puts(bp,"\n Key-Arg : ") <= 0) goto err; in SSL_SESSION_print()
169 if (BIO_puts(bp,"None") <= 0) goto err; in SSL_SESSION_print()
174 if (BIO_printf(bp,"%02X",x->key_arg[i]) <= 0) goto err; in SSL_SESSION_print()
177 if (BIO_puts(bp,"\n Krb5 Principal: ") <= 0) goto err; in SSL_SESSION_print()
180 if (BIO_puts(bp,"None") <= 0) goto err; in SSL_SESSION_print()
185 if (BIO_printf(bp,"%02X",x->krb5_client_princ[i]) <= 0) goto err; in SSL_SESSION_print()
189 if (BIO_puts(bp,"\n PSK identity: ") <= 0) goto err; in SSL_SESSION_print()
190 if (BIO_printf(bp, "%s", x->psk_identity ? x->psk_identity : "None") <= 0) goto err; in SSL_SESSION_print()
191 if (BIO_puts(bp,"\n PSK identity hint: ") <= 0) goto err; in SSL_SESSION_print()
192 if (BIO_printf(bp, "%s", x->psk_identity_hint ? x->psk_identity_hint : "None") <= 0) goto err; in SSL_SESSION_print()
195 if (BIO_puts(bp,"\n SRP username: ") <= 0) goto err; in SSL_SESSION_print()
196 if (BIO_printf(bp, "%s", x->srp_username ? x->srp_username : "None") <= 0) goto err; in SSL_SESSION_print()
204 goto err; in SSL_SESSION_print()
208 if (BIO_puts(bp, "\n TLS session ticket:\n") <= 0) goto err; in SSL_SESSION_print()
210 goto err; in SSL_SESSION_print()
222 if (BIO_printf(bp,"\n Compression: %d",x->compress_meth) <= 0) goto err; in SSL_SESSION_print()
226 if (BIO_printf(bp,"\n Compression: %d (%s)", comp->id,comp->method->name) <= 0) goto err; in SSL_SESSION_print()
232 if (BIO_printf(bp, "\n Start Time: %ld",x->time) <= 0) goto err; in SSL_SESSION_print()
236 if (BIO_printf(bp, "\n Timeout : %ld (sec)",x->timeout) <= 0) goto err; in SSL_SESSION_print()
238 if (BIO_puts(bp,"\n") <= 0) goto err; in SSL_SESSION_print()
240 if (BIO_puts(bp, " Verify return code: ") <= 0) goto err; in SSL_SESSION_print()
242 X509_verify_cert_error_string(x->verify_result)) <= 0) goto err; in SSL_SESSION_print()
245 err: in SSL_SESSION_print()