1. 26 5月, 2023 1 次提交
  2. 12 4月, 2023 2 次提交
  3. 10 8月, 2021 1 次提交
  4. 27 2月, 2020 1 次提交
  5. 28 9月, 2019 1 次提交
  6. 17 4月, 2018 1 次提交
  7. 03 4月, 2018 1 次提交
  8. 08 12月, 2017 1 次提交
  9. 30 10月, 2017 1 次提交
  10. 13 2月, 2017 2 次提交
  11. 18 5月, 2016 1 次提交
  12. 22 3月, 2016 1 次提交
  13. 29 2月, 2016 2 次提交
    • M
      Clarify ASYNC_WAIT_CTX_clear_fd() docs · 83856523
      Matt Caswell 提交于
      Clarify that the "cleanup" routing does not get called if you invoke
      ASYNC_WAIT_CTX_clear_fd() directly.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      83856523
    • M
      Refactor the async wait fd logic · ff75a257
      Matt Caswell 提交于
      Implementation experience has shown that the original plan for async wait
      fds was too simplistic. Originally the async logic created a pipe internally
      and user/engine code could then get access to it via API calls. It is more
      flexible if the engine is able to create its own fd and provide it to the
      async code.
      
      Another issue is that there can be a lot of churn in the fd value within
      the context of (say) a single SSL connection leading to continually adding
      and removing fds from (say) epoll. It is better if we can provide some
      stability of the fd value across a whole SSL connection. This is
      problematic because an engine has no concept of an SSL connection.
      
      This commit refactors things to introduce an ASYNC_WAIT_CTX which acts as a
      proxy for an SSL connection down at the engine layer.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      ff75a257