Re: [openssl-users] Openssl asynchronous operation in real network

2019-01-15 Thread Ananthu Unnikrishnan
inside > > your dynamic > > > engine? ASYNC_JOBs are always local to a thread. When a job is > started > > it is > > > associated with the current thread. So ASYNC_get_current_job() > returns > > the job > > > associated with the current thread. Similarly if you pause a > job

Re: [openssl-users] Openssl asynchronous operation in real network

2019-01-12 Thread Ananthu Unnikrishnan
ASYNC_start_job function is calling but no mechanism found for polling the fd's. Is it written elsewhere?. On Fri, Jan 11, 2019 at 3:12 PM Matt Caswell wrote: > > > On 10/01/2019 18:09, Ananthu Unnikrishnan wrote: > > Hi Matt, > > > > Thanks a lot for the rep

Re: [openssl-users] Openssl asynchronous operation in real network

2019-01-10 Thread Ananthu Unnikrishnan
suggest where resume operation should be done, it would be helpful. On Thu, Jan 10, 2019 at 10:11 PM Matt Caswell wrote: > > > On 10/01/2019 09:39, Ananthu Unnikrishnan wrote: > > Hi all, > > > > We are not able to access the waitctx address f

Re: [openssl-users] Openssl asynchronous operation in real network

2019-01-10 Thread Ananthu Unnikrishnan
, 2019 at 11:26 AM Ananthu Unnikrishnan wrote: > Can anyone please help on this? If u need any additional information > please let me know. > > On Mon, Jan 7, 2019 at 6:25 PM Ananthu Unnikrishnan > wrote: > >> Hi all, >> >> Adding more details to the previous m

Re: [openssl-users] Openssl asynchronous operation in real network

2019-01-07 Thread Ananthu Unnikrishnan
Can anyone please help on this? If u need any additional information please let me know. On Mon, Jan 7, 2019 at 6:25 PM Ananthu Unnikrishnan wrote: > Hi all, > > Adding more details to the previous mail. We have edited the OpenSSL code > for implementing the polling for change

Re: [openssl-users] Openssl asynchronous operation in real network

2019-01-07 Thread Ananthu Unnikrishnan
thing is wrong somewhere. Thanks in advance. On Sun, Jan 6, 2019 at 10:30 AM Ananthu Unnikrishnan wrote: > Hi all, > >We have implemented a dynamic engine and tested in the async mode > using OpenSSL speed command. But in a real network scenario, we have seen > only starti

[openssl-users] Openssl asynchronous operation in real network

2019-01-05 Thread Ananthu Unnikrishnan
Hi all, We have implemented a dynamic engine and tested in the async mode using OpenSSL speed command. But in a real network scenario, we have seen only starting the async_job(in file ssl/ssl_lib.c, function: ssl_start_async_job) in the OpenSSL. We haven't seen polling async_fd's for resumi