Re: [openssl-users] How to respond to TLS heartbeat in openssl

2017-12-21 Thread Keshava Krishna Bhat K
Hi Jeff, I checked in the git repo (tags/OpenSSL_1_0_2g), opnesslconf.h does not have OPENSSL_NO_HEARTBEATS the above definition in 1.0.2g. So I think its enabled. Regards, Keshava. On Fri, Dec 22, 2017 at 12:20 PM, Jeffrey Walton wrote: > On Fri, Dec 22, 2017 at 1:32 AM, Keshava Krishna Bhat

Re: [openssl-users] How to respond to TLS heartbeat in openssl

2017-12-21 Thread Jeffrey Walton
On Fri, Dec 22, 2017 at 1:32 AM, Keshava Krishna Bhat K wrote: > Ok, I got to know that > openssl version -a gives out the flags used while building openssl. > so the output of this was > > OpenSSL 1.0.2g 1 Mar 2016 > built on: reproducible build, date unspecified > platform: debian-amd64 > opti

Re: [openssl-users] How to respond to TLS heartbeat in openssl

2017-12-21 Thread Keshava Krishna Bhat K
Ok, I got to know that openssl version -a gives out the flags used while building openssl. so the output of this was OpenSSL 1.0.2g 1 Mar 2016 built on: reproducible build, date unspecified platform: debian-amd64 options: bn(64,64) rc4(16x,int) des(idx,cisc,16,int) blowfish(idx) compiler: cc -I

Re: [openssl-users] How to respond to TLS heartbeat in openssl

2017-12-20 Thread Keshava Krishna Bhat K
Hi, Is this controlled by the Makefile? Regards, Keshava. On Wed, Dec 20, 2017 at 6:20 PM, Keshava Krishna Bhat K < keshavkrishn...@gmail.com> wrote: > Hi All, > > I am writing a TLS server that responds to a incoming TLS heartbeat > request. I am using OpenSSL 1.0.2g . > But I am not able to g

[openssl-users] How to respond to TLS heartbeat in openssl

2017-12-20 Thread Keshava Krishna Bhat K
Hi All, I am writing a TLS server that responds to a incoming TLS heartbeat request. I am using OpenSSL 1.0.2g . But I am not able to get the server respond to a hearbeat request. Any clue on what I am missing? The code snippets are here https://stackoverflow.com/ questions/47902283/how-to-respond