1. 12 7月, 2019 1 次提交
  2. 28 5月, 2019 1 次提交
  3. 17 5月, 2019 1 次提交
  4. 12 2月, 2019 1 次提交
  5. 11 2月, 2019 1 次提交
  6. 10 2月, 2019 1 次提交
  7. 31 1月, 2019 1 次提交
  8. 30 1月, 2019 1 次提交
  9. 26 1月, 2019 1 次提交
  10. 23 1月, 2019 2 次提交
  11. 21 1月, 2019 1 次提交
  12. 10 1月, 2019 1 次提交
  13. 09 1月, 2019 3 次提交
  14. 11 10月, 2018 1 次提交
  15. 29 9月, 2018 1 次提交
  16. 28 9月, 2018 1 次提交
  17. 18 9月, 2018 2 次提交
  18. 14 9月, 2018 1 次提交
  19. 13 9月, 2018 1 次提交
    • Y
      To be continue. · d5ba42b8
      youngwolf 提交于
      Fix spurious awakenings when doing sync message sending and receiving.
      Support timed waiting when doing sync message sending and receiving.
      d5ba42b8
  20. 30 8月, 2018 1 次提交
  21. 29 8月, 2018 1 次提交
  22. 26 8月, 2018 1 次提交
    • Y
      Simplify sync message receiving. · 631d677c
      youngwolf 提交于
      Dummy empty messages will not be returned from sync_recv_msg().
      sync_recv_msg() will just append new messages to msg_can instead of replacing all messages in msg_can with new messages.
      631d677c
  23. 21 8月, 2018 2 次提交
  24. 20 8月, 2018 1 次提交
  25. 19 8月, 2018 1 次提交
  26. 12 7月, 2018 1 次提交
  27. 10 7月, 2018 1 次提交
  28. 02 5月, 2018 1 次提交
  29. 30 4月, 2018 1 次提交
  30. 27 4月, 2018 1 次提交
  31. 26 4月, 2018 5 次提交
    • Y
      1.2.0 release. · 75fa186f
      youngwolf 提交于
      Support object restoration (on server side).
      Re-implement heartbeat function, use user data instead of OOB.
      Refactor and optimize ssl object, now ssl::commector_base and ssl::server_socket_base are reuable.
      
      Not compatible with old versions, please note.
      See config.h for more details about this release.
      75fa186f
    • W
      Disable heartbeat by default. · 7bf5fe20
      wolf 提交于
      Sync doc.
      Version number keeps unchanged.
      7bf5fe20
    • Y
      1.1.5 release. · 6251fb2d
      youngowlf 提交于
      Support heartbeat (via OOB data), see ASCS_HEARTBEAT_INTERVAL macro for more details.
      Support scatter-gather buffers when receiving messages, this feature needs modification of i_unpacker, you must explicitly define
       ASCS_SCATTERED_RECV_BUFFER macro to open it, this is just for compatibility.
      Simplify lock-free mechanism and use std::atomic_flag instead of std::atomic_size_t.
      Optimize container insertion (use series of emplace functions instead).
      Demo echo_client support alterable number of sending thread (before, it's a hard code 16).
      Fix bug: In extreme cases, messages may get starved in receive buffer and will not be dispatched until arrival of next message.
      Fix bug: In extreme cases, messages may get starved in send buffer and will not be sent until arrival of next message.
      Fix bug: Sometimes, connector_base cannot reconnect to the server after link broken.
      
      known issues:
      1. heartbeat mechanism cannot work properly between windows (at least win-10) and Ubuntu (at least Ubuntu-16.04).
      6251fb2d
    • Y
      1.1.2 release. · afbf6243
      youngwolf 提交于
      Fix bug: ascs::list cannot be moved properly via moving constructor.
      Use ASCS_DELAY_CLOSE instead of ASCS_ENHANCED_STABILITY macro to control delay close duration,
       0 is an equivalent of defining ASCS_ENHANCED_STABILITY, other values keep the same meanings as before.
      Move ascs::socket::closing related logic to ascs::object.
      Make ascs::socket::id(uint_fast64_t) private to avoid changing IDs by users.
      Call close at the end of shutdown function, just for safety.
      Add move capture in lambda.
      Optimize lambda expressions.
      afbf6243
    • Y
      1.1.1 release. · 2aabeebb
      youngwolf 提交于
      Support non-lock queue, it's totally not thread safe and lock-free, it can improve IO throughput with particular business.
      Demonstrate how and when to use non-lock queue as the input and output message buffer.
      Queues (and their internal containers) used as input and output message buffer are now configurable (by macros or template arguments).
      New macros--ASCS_INPUT_QUEUE, ASCS_INPUT_CONTAINER, ASCS_OUTPUT_QUEUE and ASCS_OUTPUT_CONTAINER.
      Drop macro ASCS_USE_CONCURRENT_QUEUE, rename macro ASCS_USE_CONCURRE to ASCS_HAS_CONCURRENT_QUEUE.
      In contrast to non_lock_queue, split message_queue into lock_queue and lock_free_queue.
      Move container related classes and functions from st_asio_wrapper_base.h to st_asio_wrapper_container.h.
      Improve efficiency in scenarios of low throughput like pingpong test.
      Replaceable packer/unpacker now support replaceable_buffer (an alias of auto_buffer) and shared_buffer to be their message type.
      Move class statistic and obj_with_begin_time out of ascs::socket to reduce template tiers.
      2aabeebb