RE: [openssl/openssl] bio_dgram vs IPv6

2022-03-31 Thread Michael Wojcik
> From: Michael Richardson > Sent: Thursday, 31 March, 2022 14:18 > > Michael Wojcik wrote: > > #if defined OPENSSL_SYS_WINDOWS > > # include > > #else > > # include > > #endif > > But, don't all the OPENSSL_* macros expand to 0/1, anyway, so we actually > just want #if OP

RE: [openssl/openssl] bio_dgram vs IPv6

2022-03-31 Thread Michael Wojcik
> From: openssl-users On Behalf Of > Michael Richardson > Sent: Thursday, 31 March, 2022 14:19 > > The clang-9 test fails with: > > # ERROR: @ test/bio_dgram_test_helpers.c:150 > # failed to v6 bind socket: Permission denied > # > # > # OPENSSL_TEST_RAND_

Re: [openssl/openssl] bio_dgram vs IPv6

2022-03-31 Thread Michael Richardson
The clang-9 test fails with: # ERROR: @ test/bio_dgram_test_helpers.c:150 # failed to v6 bind socket: Permission denied # # # OPENSSL_TEST_RAND_ORDER=1648577511 not ok 2 - iteration 1 https://github.com/mcr/openssl/runs/5741887864?check_suite_foc

Re: [openssl/openssl] bio_dgram vs IPv6

2022-03-31 Thread Michael Richardson
Michael Wojcik wrote: > #if defined OPENSSL_SYS_WINDOWS > # include > #else > # include > #endif But, don't all the OPENSSL_* macros expand to 0/1, anyway, so we actually just want #if OPENSSL_SYS_WINDOWS? > (Note C does not require the argument of the operator "defined

Re: Cross-project request... looking for input on a rewrite of Asterisk's res_crypto.c module

2022-03-31 Thread Philip Prindeville
> On Mar 30, 2022, at 10:25 AM, William Roberts > wrote: > > On Tue, Mar 29, 2022 at 3:40 PM Philip Prindeville > wrote: >> >> Hi, >> >> I'm trying to develop a newer replacement module for Asterisk's res_crypto >> that is (for now) 1.1.x compatible but can be easily updated to 3.0 (and

Re: OpenSSL Memory Allocation Functions Issue

2022-03-31 Thread Chris
Hi Todd, Thanks for the information. I've looked at compiling. I'm assuming this is the file you're referring to? /usr/local/src/openssl-1.1.1m/configdata.pm What am I looking for in that file? There is no mention of malloc? Do I alter this file before running make clean make make install Th