asio.rst 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. ASIO port
  2. =========
  3. Overview
  4. --------
  5. Asio is a cross-platform C++ library, see https://think-async.com. It provides a consistent asynchronous model using a modern C++ approach.
  6. ASIO documentation
  7. ^^^^^^^^^^^^^^^^^^
  8. Please refer to the original asio documentation at https://think-async.com/Asio/Documentation.
  9. Asio also comes with a number of examples which could be find under Documentation/Examples on that web site.
  10. Supported features
  11. ^^^^^^^^^^^^^^^^^^
  12. ESP platform port currently supports only network asynchronous socket operations; does not support serial port and ssl.
  13. Internal asio settings for ESP include
  14. - EXCEPTIONS are enabled in ASIO if enabled in menuconfig
  15. - TYPEID is enabled in ASIO if enabled in menuconfig
  16. Application Example
  17. -------------------
  18. ESP examples are based on standard asio :example:`protocols/asio`:
  19. - :example:`protocols/asio/udp_echo_server`
  20. - :example:`protocols/asio/tcp_echo_server`
  21. - :example:`protocols/asio/chat_client`
  22. - :example:`protocols/asio/chat_server`
  23. Please refer to the specific example README.md for details