Sorry for not aksing my question clearly!

I'm using following code to make an ocsp revocation check:

OCSP_request_add0_id(req, id);
if(!OCSP_parse_url(ocsp_url, &host, &port, &path, &use_ssl)){
   // error
}
cbio = BIO_new_connect(host);
if(!cbio){
   // error
}
BIO_set_conn_port(cbio, port);
if(BIO_do_connect(cbio)<=0){
   // error
}
resp = OCSP_sendreq_bio(cbio, path, req);

Do I have to make some settings to bio (like authentication, ...) if my
client uses a proxy server
to connect to the internet?

-----Ursprüngliche Nachricht-----
Von: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Im Auftrag von Rodney Thayer
Gesendet: Mittwoch, 17. Oktober 2007 19:34
An: openssl-users@openssl.org
Betreff: Re: ocsp behind proxy

Christian Wiesbauer wrote:

> I want to know if an ocsp revocation check works with openssl if I'm using
a
> proxy?

OCSP isn't HTTP so what kind of proxy do you mean?
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to