1. 25 4月, 2017 1 次提交
    • M
      Add a BIO_lookup_ex() function · 5114d822
      Matt Caswell 提交于
      The existing BIO_lookup() wraps a call to getaddrinfo and provides an
      abstracted capability to lookup addresses based on socket type and family.
      However it provides no ability to lookup based on protocol. Normally,
      when dealing with TCP/UDP this is not required. However getaddrinfo (at
      least on linux) never returns SCTP addresses unless you specifically ask
      for them in the protocol field. Therefore BIO_lookup_ex() is added which
      provides the protocol field.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/3286)
      5114d822
  2. 29 3月, 2017 2 次提交
  3. 29 10月, 2016 1 次提交
  4. 28 10月, 2016 6 次提交
  5. 13 9月, 2016 1 次提交
  6. 22 8月, 2016 1 次提交
  7. 20 8月, 2016 1 次提交
  8. 26 7月, 2016 1 次提交
  9. 21 7月, 2016 1 次提交
  10. 09 7月, 2016 1 次提交
  11. 21 6月, 2016 1 次提交
  12. 24 5月, 2016 1 次提交
  13. 18 5月, 2016 1 次提交
  14. 09 5月, 2016 1 次提交
  15. 30 4月, 2016 1 次提交
  16. 29 4月, 2016 1 次提交
  17. 20 4月, 2016 2 次提交
  18. 13 4月, 2016 2 次提交
  19. 03 4月, 2016 1 次提交
    • K
      Optimized BIO mem read - without reallocation · 9fe9d046
      Kirill Marinushkin 提交于
      Currently on every BIO mem read operation the remaining data is reallocated.
      This commit solves the issue.
      BIO mem structure includes additional pointer to the read position.
      On every read the pointer moves instead of reallocating the memory for the remaining data.
      Reallocation accures before write and some ioctl operations, if the read pointer doesn't point on the beginning of the buffer.
      Also the flag is added to rewind the read pointer without losing the data.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      9fe9d046
  20. 30 3月, 2016 2 次提交
  21. 22 3月, 2016 1 次提交
  22. 20 3月, 2016 1 次提交
  23. 18 3月, 2016 1 次提交
  24. 09 3月, 2016 1 次提交
  25. 12 2月, 2016 1 次提交
  26. 06 2月, 2016 1 次提交
  27. 04 2月, 2016 5 次提交