Reg: Freeing of SSL_CTX object through SSL_free Function

2022-04-13 Thread Ram Chandra via openssl-users
I am using OpenSSL 1.1.1k Version, From that I see following are done in OpenSSL code, pls correct me if I am wrong. Inside SSL_new: SSL *SSL_new(SSL_CTX *ctx){    SSL *s;     ...     ...     s = OPENSSL_zalloc(sizeof(*s));               SSL_CTX_up_ref(ctx);      s->ctx = ctx; 

Fw: Reg: Memory leaks Using OpenSSL API - Unsure

2022-04-10 Thread Ram Chandra via openssl-users
Hi,  I have recently started developing using OpenSSL and i am confused/unclear about below topic. Request you to help me. I am running a DTLS Server which handles more than 1000 connections.The problem i am facing is every time I close connections and also connect again I see there is some RA