Lines Matching full:goto
86 if (x == NULL) goto err;
87 if (BIO_puts(bp,"SSL-Session:\n") <= 0) goto err;
100 if (BIO_printf(bp," Protocol : %s\n",s) <= 0) goto err;
107 goto err;
112 goto err;
118 goto err;
120 if (BIO_puts(bp," Session-ID: ") <= 0) goto err;
123 if (BIO_printf(bp,"%02X",x->session_id[i]) <= 0) goto err;
125 if (BIO_puts(bp,"\n Session-ID-ctx: ") <= 0) goto err;
129 goto err;
131 if (BIO_puts(bp,"\n Master-Key: ") <= 0) goto err;
134 if (BIO_printf(bp,"%02X",x->master_key[i]) <= 0) goto err;
136 if (BIO_puts(bp,"\n Key-Arg : ") <= 0) goto err;
139 if (BIO_puts(bp,"None") <= 0) goto err;
144 if (BIO_printf(bp,"%02X",x->key_arg[i]) <= 0) goto err;
147 if (BIO_puts(bp,"\n Krb5 Principal: ") <= 0) goto err;
150 if (BIO_puts(bp,"None") <= 0) goto err;
155 if (BIO_printf(bp,"%02X",x->krb5_client_princ[i]) <= 0) goto err;
164 goto err;
168 if (BIO_puts(bp, "\n TLS session ticket:\n") <= 0) goto err;
170 goto err;
181 if (BIO_printf(bp,"\n Compression: %d",x->compress_meth) <= 0) goto err;
185 if (BIO_printf(bp,"\n Compression: %d (%s)", comp->id,comp->method->name) <= 0) goto err;
191 if (BIO_printf(bp, "\n Start Time: %ld",x->time) <= 0) goto err;
195 if (BIO_printf(bp, "\n Timeout : %ld (sec)",x->timeout) <= 0) goto err;
197 if (BIO_puts(bp,"\n") <= 0) goto err;
199 if (BIO_puts(bp, " Verify return code: ") <= 0) goto err;
201 X509_verify_cert_error_string(x->verify_result)) <= 0) goto err;