diff options
-rw-r--r-- | openssl/README | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/openssl/README b/openssl/README index ba35c492..a407cfe7 100644 --- a/openssl/README +++ b/openssl/README @@ -328,3 +328,8 @@ Hmm, the alternative would be to write a comparision routine which expands a pair of bitstrings as addresses, and write the rest of the code in terms of that. Might be a useful function to have anyway. +int addr_cmp(int afi, ASN1_BIT_STRING *a, unsigned char fill_a, + ASN1_BIT_STRING *b, unsigned char fill_b); + +Problem is, this requires data not available in a sk_sort() handler. +So I think we're stuck with the temporary stack approach. |