X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=CHANGES;h=f43b723c8e2848020919c5485a6a5ba340efa92c;hp=836740afd08055ffa8cebd48a90a7cb1e1424796;hb=8e961835063985d61b5131dc4c912e565918d8a3;hpb=a8312c0e24a73e70b25d9811de2106f50b32081b diff --git a/CHANGES b/CHANGES index 836740afd0..f43b723c8e 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,17 @@ Changes between 0.9.6 and 0.9.7 [xx XXX 2000] + *) Change function OCSP_request_add() to OCSP_request_add0(). + This doesn't copy the supplied OCSP_CERTID and avoids the + need to free up the newly created id. Change return type + to OCSP_ONEREQ to return the internal OCSP_ONEREQ structure. + This can then be used to add extensions to the request. + Deleted OCSP_request_new(), since most of its functionality + is now in OCSP_REQUEST_new() (and the case insensitive name + clash) apart from the ability to set the request name which + will be added elsewhere. + [Steve Henson] + *) Update OCSP API. Remove obsolete extensions argument from various functions. Extensions are now handled using the new OCSP extension code. New simple OCSP HTTP function which