1. 19 2月, 2001 1 次提交
  2. 09 1月, 2001 1 次提交
  3. 08 1月, 2001 1 次提交
  4. 29 12月, 2000 2 次提交
  5. 30 11月, 2000 1 次提交
  6. 28 11月, 2000 1 次提交
  7. 22 11月, 2000 1 次提交
  8. 09 11月, 2000 1 次提交
  9. 27 10月, 2000 1 次提交
  10. 20 9月, 2000 1 次提交
    • R
      On VMS, stdout may very well lead to a file that is written to in a · 645749ef
      Richard Levitte 提交于
      record-oriented fashion.  That means that every write() will write a
      separate record, which will be read separately by the programs trying
      to read from it.  This can be very confusing.
      
      The solution is to put a BIO filter in the way that will buffer text
      until a linefeed is reached, and then write everything a line at a
      time, so every record written will be an actual line, not chunks of
      lines and not (usually doesn't happen, but I've seen it once) several
      lines in one record.  Voila, BIO_f_linebuffer() is born.
      
      Since we're so close to release time, I'm making this VMS-only for
      now, just to make sure no code is needlessly broken by this.  After
      the release, this BIO method will be enabled on all other platforms as
      well.
      645749ef
  11. 16 9月, 2000 2 次提交
  12. 10 9月, 2000 1 次提交
  13. 09 9月, 2000 1 次提交
  14. 18 8月, 2000 1 次提交
  15. 19 6月, 2000 1 次提交
  16. 05 4月, 2000 1 次提交
    • G
      This commit ties the new DSO code (crypto/dso/) into the build for a · 9ec0126e
      Geoff Thorpe 提交于
      variety of platforms. A few are missing, and they will be added in
      eventually, but as this is new stuff, it was better to not break lots of
      platforms in one go that we can't easily test. The changes to "Configure"
      should illustrate how to add support to other systems if you feel like
      having a go.
      
      NB: I'll add something shortly to allow you to add "dlfcn.h" support on
      those platforms that don't have (or need) a dlfcn.h header file. (The
      symbol for Configure will probably by "dlfcn_no_h").
      
      Thanks to Richard Levitte, who is responsible for the dso_dl.c support,
      understanding the trickier aspects of the build process, and giving great
      feedback on everything else.
      
      [Don't use this stuff if you're easily offended by changes to the
      interface or behaviour - it's still work in progress.]
      
      PR:
      9ec0126e
  17. 19 3月, 2000 1 次提交
  18. 14 3月, 2000 1 次提交
  19. 02 3月, 2000 1 次提交
  20. 27 2月, 2000 1 次提交
  21. 26 2月, 2000 1 次提交
  22. 24 2月, 2000 1 次提交
  23. 17 1月, 2000 1 次提交
  24. 16 1月, 2000 2 次提交
  25. 22 12月, 1999 1 次提交
  26. 17 12月, 1999 2 次提交
    • R
      Rebuild of the OpenSSL memory allocation and deallocation routines. · 9ac42ed8
      Richard Levitte 提交于
      With this change, the following is provided and present at all times
      (meaning CRYPTO_MDEBUG is no longer required to get this functionality):
      
        - hooks to provide your own allocation and deallocation routines.
          They have to have the same interface as malloc(), realloc() and
          free().  They are registered by calling CRYPTO_set_mem_functions()
          with the function pointers.
      
        - hooks to provide your own memory debugging routines.  The have to
          have the same interface as as the CRYPTO_dbg_*() routines.  They
          are registered by calling CRYPTO_set_mem_debug_functions() with
          the function pointers.
      
      I moved everything that was already built into OpenSSL and did memory
      debugging to a separate file (mem_dbg.c), to make it clear what is
      what.
      
      With this, the relevance of the CRYPTO_MDEBUG has changed.  The only
      thing in crypto/crypto.h that it affects is the definition of the
      MemCheck_start and MemCheck_stop macros.
      9ac42ed8
    • R
      Synchronise VMS scripts with Unix Makefiles · 8a158009
      Richard Levitte 提交于
      8a158009
  27. 27 11月, 1999 1 次提交
  28. 12 11月, 1999 1 次提交
  29. 29 7月, 1999 1 次提交
    • U
      VMS updates. · 8c197cc5
      Ulf Möller 提交于
      Submitted by: Richard Levitte <levitte@stacken.kth.se>
      8c197cc5
  30. 13 5月, 1999 1 次提交
    • U
      VMS support. · 7d7d2cbc
      Ulf Möller 提交于
      Submitted by: Richard Levitte <richard@levitte.org>
      7d7d2cbc