1. 13 5月, 2001 10 次提交
  2. 12 5月, 2001 3 次提交
    • L
      Clarify behaviour with respect to SSL/TLS records. · 33ab4699
      Lutz Jänicke 提交于
      33ab4699
    • D
      · 595cc5b4
      Dr. Stephen Henson 提交于
      Under VC++ _DLL is set to indicate that the application
      will be linked against the DLL runtime library. It is
      automatically set when /MD is used.
      
      As a result OpenSSL shouldn't use _DLL to determine if
      it should set OPENSSL_OPT_WINDLL because this will
      cause linkage conflicts with static builds which do
      include the /MD compiler switch.
      595cc5b4
    • D
      Typo. · 29fb08c2
      Dr. Stephen Henson 提交于
      29fb08c2
  3. 11 5月, 2001 2 次提交
  4. 10 5月, 2001 5 次提交
  5. 09 5月, 2001 1 次提交
  6. 08 5月, 2001 4 次提交
  7. 07 5月, 2001 3 次提交
  8. 04 5月, 2001 1 次提交
  9. 03 5月, 2001 4 次提交
  10. 02 5月, 2001 1 次提交
  11. 30 4月, 2001 2 次提交
  12. 28 4月, 2001 1 次提交
  13. 27 4月, 2001 3 次提交
    • R
      make update · 10645a4f
      Richard Levitte 提交于
      10645a4f
    • G
      For some inexplicable reason, I'd (a) left the debugging irreversibly · 06cb0353
      Geoff Thorpe 提交于
      turned on, and (b) left a somewhat curious debugging string in the output.
      06cb0353
    • G
      Some fixes to the reference-counting in ENGINE code. First, there were a · b41f836e
      Geoff Thorpe 提交于
      few statements equivalent to "ENGINE_add(ENGINE_openssl())" etc. The inner
      call to ENGINE_openssl() (as with other functions like it) orphans a
      structural reference count. Second, the ENGINE_cleanup() function also
      needs to clean up the functional reference counts held internally as the
      list of "defaults" (ie. as used when RSA_new() requires an appropriate
      ENGINE reference). So ENGINE_clear_defaults() was created and is called
      from within ENGINE_cleanup(). Third, some of the existing code was
      logically broken in its treatment of reference counts and locking (my
      fault), so the necessary bits have been restructured and tidied up.
      
      To test this stuff, compiling with ENGINE_REF_COUNT_DEBUG will cause every
      reference count change (both structural and functional) to log a message to
      'stderr'. Using with "openssl engine" for example shows this in action
      quite well as the 'engine' sub-command cleans up after itself properly.
      
      Also replaced some spaces with tabs.
      b41f836e