Re: [openssl-users] Where to find definitions of certain functions

2016-10-16 Thread Salz, Rich
> ex_data.c:(.text+0xaa6): undefined reference to `sk_num' Something seems wrong in your build environment. Make sure you are starting with a completely empty build tree. -rich salz -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

Re: [openssl-users] Where to find definitions of certain functions

2016-10-16 Thread Ajay Garg
I am bringing in the relevant sources from the cloned openssl-repository, and comping each "c unit" separately. Also, I am not using Makefiles, rather compiling each "c unit" using gcc using first-principles. Could that be an issue? On Sun, Oct 16, 2016 at 8:10 PM, Salz, Rich

Re: [openssl-users] Where to find definitions of certain functions

2016-10-16 Thread Ajay Garg
Thanks Salz. I get a lot of linking-errors like :: ex_data.c:(.text+0xaa6): undefined reference to `sk_num' ex_data.c:(.text+0xb06): undefined reference to `sk_value' ex_data.c:(.text+0xc5e): undefined reference to `sk_free' Doing, *nm -o /usr/lib/i386-linux-gnu/libssl.a | grep

Re: [openssl-users] Where to find definitions of certain functions

2016-10-16 Thread Salz, Rich
> Also, I am not using Makefiles, rather compiling each "c unit" using gcc > using first-principles. > Could that be an issue? Probably. Only "make" is supported. You are on your own. -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

Re: [openssl-users] openssl s_client B as first char sends heartbeat

2016-10-16 Thread Salz, Rich
Use the –nocommands flag. -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

[openssl-users] openssl s_client B as first char sends heartbeat

2016-10-16 Thread Rob Butler
Hello, I've come across something strange.  When using openssl s_client and trying to send B (uppercase only) as the first character on any line it causes a heartbeat to be sent.  Is this a bug or a feature?  Any way to escape it to send the uppercase B without sending the heartbeat? ThanksRob

[openssl-users] openssl s_client B as first char sends heartbeat

2016-10-16 Thread Rob Butler
Hello, I've come across something strange.  When using openssl s_client and trying to send B (uppercase only) as the first character on any line it causes a heartbeat to be sent.  Is this a bug or a feature?  Any way to escape it to send the uppercase B without sending the heartbeat? ThanksRob

Re: [openssl-users] Where to find definitions of certain functions

2016-10-16 Thread Ajay Garg
Aah... I guess I was being an idiot. I just realize that the recommended/best/easier way is to compile openssl as a separate library (enabling/disabling/removing features as required), and then link this library to our application-binary. Thanks a ton Salz, you have saved me a LOT of hours