Home | History | Annotate | Download | only in apps

Lines Matching refs:stmp

1262 		BIO *stmp = BIO_new_file(sess_in, "r");
1263 if (!stmp)
1270 sess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL);
1271 BIO_free(stmp);
1580 BIO *stmp = BIO_new_file(sess_out, "w");
1581 if (stmp)
1583 PEM_write_bio_SSL_SESSION(stmp, SSL_get_session(con));
1584 BIO_free(stmp);