LinkPython-extern 1.1.0__tar.gz → 1.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1064) hide show
  1. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/.gitignore +5 -0
  2. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/CMakeLists.txt +1 -1
  3. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/PKG-INFO +5 -2
  4. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.clang-tidy +2 -0
  5. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.pre-commit-config.yaml +7 -7
  6. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/CMakeLists.txt +3 -0
  7. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/cast.h +9 -2
  8. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/class.h +16 -3
  9. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/common.h +22 -3
  10. linkpython_extern-1.1.1/modules/pybind11/include/pybind11/detail/cpp_conduit.h +77 -0
  11. linkpython_extern-1.1.1/modules/pybind11/include/pybind11/detail/exception_translation.h +71 -0
  12. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/init.h +4 -2
  13. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/internals.h +30 -13
  14. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/type_caster_base.h +44 -63
  15. linkpython_extern-1.1.1/modules/pybind11/include/pybind11/detail/value_and_holder.h +77 -0
  16. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/eigen/matrix.h +2 -1
  17. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/eigen/tensor.h +2 -4
  18. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/functional.h +45 -34
  19. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/gil_safe_call_once.h +10 -1
  20. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/numpy.h +6 -2
  21. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/pybind11.h +7 -55
  22. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/pytypes.h +2 -0
  23. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/stl/filesystem.h +16 -7
  24. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/stl_bind.h +1 -1
  25. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/typing.h +5 -2
  26. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/pybind11/__main__.py +26 -3
  27. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/pybind11/_version.py +1 -1
  28. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/pybind11Common.cmake +29 -3
  29. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/pybind11Config.cmake.in +1 -1
  30. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/pyproject.toml +9 -0
  31. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src/Link.cpp +1 -1
  32. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src-py/LinkPython_extern.egg-info/PKG-INFO +5 -2
  33. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src-py/LinkPython_extern.egg-info/SOURCES.txt +4 -0
  34. linkpython_extern-1.1.1/src-py/LinkPython_extern.egg-info/requires.txt +3 -0
  35. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/.gitmodules +0 -0
  36. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/LICENSE.md +0 -0
  37. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/MANIFEST.in +0 -0
  38. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/README.md +0 -0
  39. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/example/LinkHut.py +0 -0
  40. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/.appveyor.yml +0 -0
  41. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/.clang-format +0 -0
  42. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/.git +0 -0
  43. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/.gitignore +0 -0
  44. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/.gitmodules +0 -0
  45. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/AbletonLinkConfig.cmake +0 -0
  46. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/CMakeLists.txt +0 -0
  47. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/CONTRIBUTING.md +0 -0
  48. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/GNU-GPL-v2.0.md +0 -0
  49. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/LICENSE.md +0 -0
  50. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/README.md +0 -0
  51. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/TEST-PLAN.md +0 -0
  52. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/cmake_include/AsioStandaloneConfig.cmake +0 -0
  53. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/cmake_include/CatchConfig.cmake +0 -0
  54. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/cmake_include/ConfigureCompileFlags.cmake +0 -0
  55. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/extensions/abl_link/.clang-format +0 -0
  56. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/extensions/abl_link/CMakeLists.txt +0 -0
  57. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/extensions/abl_link/README.md +0 -0
  58. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/extensions/abl_link/abl_link.cmake +0 -0
  59. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/extensions/abl_link/include/abl_link.h +0 -0
  60. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/extensions/abl_link/src/abl_link.cpp +0 -0
  61. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/CMakeLists.txt +0 -0
  62. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/Link.hpp +0 -0
  63. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/Link.ipp +0 -0
  64. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/InterfaceScanner.hpp +0 -0
  65. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/IpV4Interface.hpp +0 -0
  66. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/MessageTypes.hpp +0 -0
  67. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/NetworkByteStreamSerializable.hpp +0 -0
  68. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/Payload.hpp +0 -0
  69. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/PeerGateway.hpp +0 -0
  70. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/PeerGateways.hpp +0 -0
  71. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/Service.hpp +0 -0
  72. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/UdpMessenger.hpp +0 -0
  73. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/test/Interface.hpp +0 -0
  74. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/test/PayloadEntries.hpp +0 -0
  75. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/test/Socket.hpp +0 -0
  76. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/v1/Messages.hpp +0 -0
  77. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Beats.hpp +0 -0
  78. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/ClientSessionTimelines.hpp +0 -0
  79. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Controller.hpp +0 -0
  80. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Gateway.hpp +0 -0
  81. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/GhostXForm.hpp +0 -0
  82. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/HostTimeFilter.hpp +0 -0
  83. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/LinearRegression.hpp +0 -0
  84. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Measurement.hpp +0 -0
  85. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/MeasurementEndpointV4.hpp +0 -0
  86. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/MeasurementService.hpp +0 -0
  87. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Median.hpp +0 -0
  88. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/NodeId.hpp +0 -0
  89. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/NodeState.hpp +0 -0
  90. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Optional.hpp +0 -0
  91. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/PayloadEntries.hpp +0 -0
  92. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/PeerState.hpp +0 -0
  93. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Peers.hpp +0 -0
  94. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Phase.hpp +0 -0
  95. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/PingResponder.hpp +0 -0
  96. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/SessionId.hpp +0 -0
  97. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/SessionState.hpp +0 -0
  98. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Sessions.hpp +0 -0
  99. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/StartStopState.hpp +0 -0
  100. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Tempo.hpp +0 -0
  101. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Timeline.hpp +0 -0
  102. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/TripleBuffer.hpp +0 -0
  103. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/v1/Messages.hpp +0 -0
  104. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/Config.hpp +0 -0
  105. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/asio/AsioTimer.hpp +0 -0
  106. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/asio/AsioWrapper.hpp +0 -0
  107. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/asio/Context.hpp +0 -0
  108. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/asio/LockFreeCallbackDispatcher.hpp +0 -0
  109. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/asio/Socket.hpp +0 -0
  110. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/asio/Util.hpp +0 -0
  111. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/darwin/Clock.hpp +0 -0
  112. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/darwin/Darwin.hpp +0 -0
  113. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/darwin/ThreadFactory.hpp +0 -0
  114. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/esp32/Clock.hpp +0 -0
  115. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/esp32/Context.hpp +0 -0
  116. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/esp32/Esp32.hpp +0 -0
  117. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/esp32/LockFreeCallbackDispatcher.hpp +0 -0
  118. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/esp32/Random.hpp +0 -0
  119. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/esp32/ScanIpIfAddrs.hpp +0 -0
  120. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/linux/Clock.hpp +0 -0
  121. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/linux/Linux.hpp +0 -0
  122. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/linux/ThreadFactory.hpp +0 -0
  123. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/posix/ScanIpIfAddrs.hpp +0 -0
  124. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/stl/Clock.hpp +0 -0
  125. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/stl/Random.hpp +0 -0
  126. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/windows/Clock.hpp +0 -0
  127. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/windows/ScanIpIfAddrs.hpp +0 -0
  128. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/windows/ThreadFactory.hpp +0 -0
  129. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/windows/Windows.hpp +0 -0
  130. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/test/CatchWrapper.hpp +0 -0
  131. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/test/serial_io/Context.hpp +0 -0
  132. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/test/serial_io/Fixture.hpp +0 -0
  133. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/test/serial_io/SchedulerTree.hpp +0 -0
  134. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/test/serial_io/Timer.hpp +0 -0
  135. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/util/Injected.hpp +0 -0
  136. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/util/Log.hpp +0 -0
  137. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/util/SafeAsyncHandler.hpp +0 -0
  138. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/util/SampleTiming.hpp +0 -0
  139. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/util/test/IoService.hpp +0 -0
  140. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/util/test/Timer.hpp +0 -0
  141. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/.appveyor.yml +0 -0
  142. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/.cirrus.yml +0 -0
  143. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/.git +0 -0
  144. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/.gitignore +0 -0
  145. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/.gitignore +0 -0
  146. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/COPYING +0 -0
  147. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/INSTALL +0 -0
  148. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/LICENSE_1_0.txt +0 -0
  149. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/Makefile.am +0 -0
  150. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/README +0 -0
  151. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/asio.manifest +0 -0
  152. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/autogen.sh +0 -0
  153. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/boost_asio.manifest +0 -0
  154. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/boostify.pl +0 -0
  155. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/configure.ac +0 -0
  156. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/.gitignore +0 -0
  157. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/Makefile.am +0 -0
  158. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/any_io_executor.hpp +0 -0
  159. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/associated_allocator.hpp +0 -0
  160. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/associated_cancellation_slot.hpp +0 -0
  161. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/associated_executor.hpp +0 -0
  162. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/associator.hpp +0 -0
  163. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/async_result.hpp +0 -0
  164. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/awaitable.hpp +0 -0
  165. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_datagram_socket.hpp +0 -0
  166. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_deadline_timer.hpp +0 -0
  167. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_file.hpp +0 -0
  168. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_io_object.hpp +0 -0
  169. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_random_access_file.hpp +0 -0
  170. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_raw_socket.hpp +0 -0
  171. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_readable_pipe.hpp +0 -0
  172. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_seq_packet_socket.hpp +0 -0
  173. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_serial_port.hpp +0 -0
  174. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_signal_set.hpp +0 -0
  175. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_socket.hpp +0 -0
  176. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_socket_acceptor.hpp +0 -0
  177. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_socket_iostream.hpp +0 -0
  178. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_socket_streambuf.hpp +0 -0
  179. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_stream_file.hpp +0 -0
  180. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_stream_socket.hpp +0 -0
  181. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_streambuf.hpp +0 -0
  182. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_streambuf_fwd.hpp +0 -0
  183. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_waitable_timer.hpp +0 -0
  184. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_writable_pipe.hpp +0 -0
  185. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/bind_allocator.hpp +0 -0
  186. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/bind_cancellation_slot.hpp +0 -0
  187. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/bind_executor.hpp +0 -0
  188. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffer.hpp +0 -0
  189. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffer_registration.hpp +0 -0
  190. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffered_read_stream.hpp +0 -0
  191. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffered_read_stream_fwd.hpp +0 -0
  192. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffered_stream.hpp +0 -0
  193. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffered_stream_fwd.hpp +0 -0
  194. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffered_write_stream.hpp +0 -0
  195. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffered_write_stream_fwd.hpp +0 -0
  196. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffers_iterator.hpp +0 -0
  197. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/cancellation_signal.hpp +0 -0
  198. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/cancellation_state.hpp +0 -0
  199. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/cancellation_type.hpp +0 -0
  200. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/co_spawn.hpp +0 -0
  201. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/completion_condition.hpp +0 -0
  202. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/compose.hpp +0 -0
  203. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/connect.hpp +0 -0
  204. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/connect_pipe.hpp +0 -0
  205. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/coroutine.hpp +0 -0
  206. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/deadline_timer.hpp +0 -0
  207. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/defer.hpp +0 -0
  208. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detached.hpp +0 -0
  209. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/array.hpp +0 -0
  210. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/array_fwd.hpp +0 -0
  211. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/assert.hpp +0 -0
  212. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/atomic_count.hpp +0 -0
  213. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/base_from_cancellation_state.hpp +0 -0
  214. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/base_from_completion_cond.hpp +0 -0
  215. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/bind_handler.hpp +0 -0
  216. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/blocking_executor_op.hpp +0 -0
  217. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/buffer_resize_guard.hpp +0 -0
  218. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/buffer_sequence_adapter.hpp +0 -0
  219. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/buffered_stream_storage.hpp +0 -0
  220. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/bulk_executor_op.hpp +0 -0
  221. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/call_stack.hpp +0 -0
  222. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/chrono.hpp +0 -0
  223. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/chrono_time_traits.hpp +0 -0
  224. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/completion_handler.hpp +0 -0
  225. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/concurrency_hint.hpp +0 -0
  226. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/conditionally_enabled_event.hpp +0 -0
  227. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/conditionally_enabled_mutex.hpp +0 -0
  228. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/config.hpp +0 -0
  229. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/consuming_buffers.hpp +0 -0
  230. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/cstddef.hpp +0 -0
  231. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/cstdint.hpp +0 -0
  232. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/date_time_fwd.hpp +0 -0
  233. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/deadline_timer_service.hpp +0 -0
  234. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/dependent_type.hpp +0 -0
  235. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/descriptor_ops.hpp +0 -0
  236. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/descriptor_read_op.hpp +0 -0
  237. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/descriptor_write_op.hpp +0 -0
  238. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/dev_poll_reactor.hpp +0 -0
  239. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/epoll_reactor.hpp +0 -0
  240. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/event.hpp +0 -0
  241. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/eventfd_select_interrupter.hpp +0 -0
  242. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/executor_function.hpp +0 -0
  243. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/executor_op.hpp +0 -0
  244. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/fd_set_adapter.hpp +0 -0
  245. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/fenced_block.hpp +0 -0
  246. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/functional.hpp +0 -0
  247. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/future.hpp +0 -0
  248. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/gcc_arm_fenced_block.hpp +0 -0
  249. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/gcc_hppa_fenced_block.hpp +0 -0
  250. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/gcc_sync_fenced_block.hpp +0 -0
  251. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/gcc_x86_fenced_block.hpp +0 -0
  252. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/global.hpp +0 -0
  253. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/handler_alloc_helpers.hpp +0 -0
  254. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/handler_cont_helpers.hpp +0 -0
  255. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/handler_invoke_helpers.hpp +0 -0
  256. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/handler_tracking.hpp +0 -0
  257. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/handler_type_requirements.hpp +0 -0
  258. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/handler_work.hpp +0 -0
  259. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/hash_map.hpp +0 -0
  260. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/buffer_sequence_adapter.ipp +0 -0
  261. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/descriptor_ops.ipp +0 -0
  262. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/dev_poll_reactor.hpp +0 -0
  263. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/dev_poll_reactor.ipp +0 -0
  264. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/epoll_reactor.hpp +0 -0
  265. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/epoll_reactor.ipp +0 -0
  266. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/eventfd_select_interrupter.ipp +0 -0
  267. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/handler_tracking.ipp +0 -0
  268. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/io_uring_descriptor_service.ipp +0 -0
  269. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/io_uring_file_service.ipp +0 -0
  270. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/io_uring_service.hpp +0 -0
  271. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/io_uring_service.ipp +0 -0
  272. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/io_uring_socket_service_base.ipp +0 -0
  273. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/kqueue_reactor.hpp +0 -0
  274. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/kqueue_reactor.ipp +0 -0
  275. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/null_event.ipp +0 -0
  276. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/pipe_select_interrupter.ipp +0 -0
  277. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/posix_event.ipp +0 -0
  278. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/posix_mutex.ipp +0 -0
  279. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/posix_serial_port_service.ipp +0 -0
  280. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/posix_thread.ipp +0 -0
  281. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/posix_tss_ptr.ipp +0 -0
  282. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/reactive_descriptor_service.ipp +0 -0
  283. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/reactive_socket_service_base.ipp +0 -0
  284. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/resolver_service_base.ipp +0 -0
  285. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/scheduler.ipp +0 -0
  286. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/select_reactor.hpp +0 -0
  287. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/select_reactor.ipp +0 -0
  288. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/service_registry.hpp +0 -0
  289. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/service_registry.ipp +0 -0
  290. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/signal_set_service.ipp +0 -0
  291. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/socket_ops.ipp +0 -0
  292. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/socket_select_interrupter.ipp +0 -0
  293. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/strand_executor_service.hpp +0 -0
  294. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/strand_executor_service.ipp +0 -0
  295. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/strand_service.hpp +0 -0
  296. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/strand_service.ipp +0 -0
  297. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/thread_context.ipp +0 -0
  298. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/throw_error.ipp +0 -0
  299. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/timer_queue_ptime.ipp +0 -0
  300. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/timer_queue_set.ipp +0 -0
  301. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_event.ipp +0 -0
  302. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_iocp_file_service.ipp +0 -0
  303. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_iocp_handle_service.ipp +0 -0
  304. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_iocp_io_context.hpp +0 -0
  305. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_iocp_io_context.ipp +0 -0
  306. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_iocp_serial_port_service.ipp +0 -0
  307. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_iocp_socket_service_base.ipp +0 -0
  308. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_mutex.ipp +0 -0
  309. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_object_handle_service.ipp +0 -0
  310. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_static_mutex.ipp +0 -0
  311. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_thread.ipp +0 -0
  312. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_tss_ptr.ipp +0 -0
  313. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/winrt_ssocket_service_base.ipp +0 -0
  314. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/winrt_timer_scheduler.hpp +0 -0
  315. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/winrt_timer_scheduler.ipp +0 -0
  316. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/winsock_init.ipp +0 -0
  317. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_control.hpp +0 -0
  318. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_object_impl.hpp +0 -0
  319. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_descriptor_read_at_op.hpp +0 -0
  320. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_descriptor_read_op.hpp +0 -0
  321. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_descriptor_service.hpp +0 -0
  322. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_descriptor_write_at_op.hpp +0 -0
  323. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_descriptor_write_op.hpp +0 -0
  324. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_file_service.hpp +0 -0
  325. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_null_buffers_op.hpp +0 -0
  326. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_operation.hpp +0 -0
  327. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_service.hpp +0 -0
  328. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_accept_op.hpp +0 -0
  329. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_connect_op.hpp +0 -0
  330. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_recv_op.hpp +0 -0
  331. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_recvfrom_op.hpp +0 -0
  332. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_recvmsg_op.hpp +0 -0
  333. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_send_op.hpp +0 -0
  334. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_sendto_op.hpp +0 -0
  335. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_service.hpp +0 -0
  336. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_service_base.hpp +0 -0
  337. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_wait_op.hpp +0 -0
  338. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/is_buffer_sequence.hpp +0 -0
  339. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/is_executor.hpp +0 -0
  340. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/keyword_tss_ptr.hpp +0 -0
  341. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/kqueue_reactor.hpp +0 -0
  342. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/limits.hpp +0 -0
  343. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/local_free_on_block_exit.hpp +0 -0
  344. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/macos_fenced_block.hpp +0 -0
  345. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/memory.hpp +0 -0
  346. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/mutex.hpp +0 -0
  347. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/non_const_lvalue.hpp +0 -0
  348. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/noncopyable.hpp +0 -0
  349. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_event.hpp +0 -0
  350. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_fenced_block.hpp +0 -0
  351. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_global.hpp +0 -0
  352. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_mutex.hpp +0 -0
  353. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_reactor.hpp +0 -0
  354. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_signal_blocker.hpp +0 -0
  355. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_socket_service.hpp +0 -0
  356. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_static_mutex.hpp +0 -0
  357. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_thread.hpp +0 -0
  358. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_tss_ptr.hpp +0 -0
  359. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/object_pool.hpp +0 -0
  360. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/old_win_sdk_compat.hpp +0 -0
  361. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/op_queue.hpp +0 -0
  362. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/operation.hpp +0 -0
  363. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/pipe_select_interrupter.hpp +0 -0
  364. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/pop_options.hpp +0 -0
  365. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_event.hpp +0 -0
  366. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_fd_set_adapter.hpp +0 -0
  367. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_global.hpp +0 -0
  368. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_mutex.hpp +0 -0
  369. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_serial_port_service.hpp +0 -0
  370. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_signal_blocker.hpp +0 -0
  371. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_static_mutex.hpp +0 -0
  372. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_thread.hpp +0 -0
  373. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_tss_ptr.hpp +0 -0
  374. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/push_options.hpp +0 -0
  375. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_descriptor_service.hpp +0 -0
  376. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_null_buffers_op.hpp +0 -0
  377. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_accept_op.hpp +0 -0
  378. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_connect_op.hpp +0 -0
  379. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_recv_op.hpp +0 -0
  380. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_recvfrom_op.hpp +0 -0
  381. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_recvmsg_op.hpp +0 -0
  382. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_send_op.hpp +0 -0
  383. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_sendto_op.hpp +0 -0
  384. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_service.hpp +0 -0
  385. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_service_base.hpp +0 -0
  386. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_wait_op.hpp +0 -0
  387. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactor.hpp +0 -0
  388. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactor_op.hpp +0 -0
  389. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactor_op_queue.hpp +0 -0
  390. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/recycling_allocator.hpp +0 -0
  391. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/regex_fwd.hpp +0 -0
  392. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/resolve_endpoint_op.hpp +0 -0
  393. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/resolve_op.hpp +0 -0
  394. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/resolve_query_op.hpp +0 -0
  395. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/resolver_service.hpp +0 -0
  396. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/resolver_service_base.hpp +0 -0
  397. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/scheduler.hpp +0 -0
  398. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/scheduler_operation.hpp +0 -0
  399. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/scheduler_task.hpp +0 -0
  400. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/scheduler_thread_info.hpp +0 -0
  401. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/scoped_lock.hpp +0 -0
  402. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/scoped_ptr.hpp +0 -0
  403. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/select_interrupter.hpp +0 -0
  404. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/select_reactor.hpp +0 -0
  405. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/service_registry.hpp +0 -0
  406. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/signal_blocker.hpp +0 -0
  407. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/signal_handler.hpp +0 -0
  408. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/signal_init.hpp +0 -0
  409. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/signal_op.hpp +0 -0
  410. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/signal_set_service.hpp +0 -0
  411. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/socket_holder.hpp +0 -0
  412. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/socket_ops.hpp +0 -0
  413. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/socket_option.hpp +0 -0
  414. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/socket_select_interrupter.hpp +0 -0
  415. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/socket_types.hpp +0 -0
  416. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/solaris_fenced_block.hpp +0 -0
  417. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/source_location.hpp +0 -0
  418. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/static_mutex.hpp +0 -0
  419. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/std_event.hpp +0 -0
  420. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/std_fenced_block.hpp +0 -0
  421. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/std_global.hpp +0 -0
  422. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/std_mutex.hpp +0 -0
  423. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/std_static_mutex.hpp +0 -0
  424. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/std_thread.hpp +0 -0
  425. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/strand_executor_service.hpp +0 -0
  426. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/strand_service.hpp +0 -0
  427. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/string_view.hpp +0 -0
  428. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/thread.hpp +0 -0
  429. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/thread_context.hpp +0 -0
  430. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/thread_group.hpp +0 -0
  431. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/thread_info_base.hpp +0 -0
  432. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/throw_error.hpp +0 -0
  433. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/throw_exception.hpp +0 -0
  434. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/timer_queue.hpp +0 -0
  435. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/timer_queue_base.hpp +0 -0
  436. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/timer_queue_ptime.hpp +0 -0
  437. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/timer_queue_set.hpp +0 -0
  438. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/timer_scheduler.hpp +0 -0
  439. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/timer_scheduler_fwd.hpp +0 -0
  440. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/tss_ptr.hpp +0 -0
  441. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/type_traits.hpp +0 -0
  442. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/variadic_templates.hpp +0 -0
  443. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/wait_handler.hpp +0 -0
  444. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/wait_op.hpp +0 -0
  445. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_event.hpp +0 -0
  446. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_fd_set_adapter.hpp +0 -0
  447. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_fenced_block.hpp +0 -0
  448. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_global.hpp +0 -0
  449. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_file_service.hpp +0 -0
  450. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_handle_read_op.hpp +0 -0
  451. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_handle_service.hpp +0 -0
  452. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_handle_write_op.hpp +0 -0
  453. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_io_context.hpp +0 -0
  454. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_null_buffers_op.hpp +0 -0
  455. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_operation.hpp +0 -0
  456. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_overlapped_op.hpp +0 -0
  457. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_overlapped_ptr.hpp +0 -0
  458. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_serial_port_service.hpp +0 -0
  459. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_accept_op.hpp +0 -0
  460. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_connect_op.hpp +0 -0
  461. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_recv_op.hpp +0 -0
  462. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_recvfrom_op.hpp +0 -0
  463. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_recvmsg_op.hpp +0 -0
  464. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_send_op.hpp +0 -0
  465. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_service.hpp +0 -0
  466. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_service_base.hpp +0 -0
  467. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_thread_info.hpp +0 -0
  468. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_wait_op.hpp +0 -0
  469. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_mutex.hpp +0 -0
  470. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_object_handle_service.hpp +0 -0
  471. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_static_mutex.hpp +0 -0
  472. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_thread.hpp +0 -0
  473. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_tss_ptr.hpp +0 -0
  474. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winapp_thread.hpp +0 -0
  475. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/wince_thread.hpp +0 -0
  476. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_async_manager.hpp +0 -0
  477. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_async_op.hpp +0 -0
  478. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_resolve_op.hpp +0 -0
  479. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_resolver_service.hpp +0 -0
  480. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_socket_connect_op.hpp +0 -0
  481. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_socket_recv_op.hpp +0 -0
  482. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_socket_send_op.hpp +0 -0
  483. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_ssocket_service.hpp +0 -0
  484. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_ssocket_service_base.hpp +0 -0
  485. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_timer_scheduler.hpp +0 -0
  486. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_utils.hpp +0 -0
  487. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winsock_init.hpp +0 -0
  488. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/work_dispatcher.hpp +0 -0
  489. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/wrapped_handler.hpp +0 -0
  490. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/dispatch.hpp +0 -0
  491. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/error.hpp +0 -0
  492. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/error_code.hpp +0 -0
  493. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/allocator.hpp +0 -0
  494. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/any_executor.hpp +0 -0
  495. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/bad_executor.hpp +0 -0
  496. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/blocking.hpp +0 -0
  497. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/blocking_adaptation.hpp +0 -0
  498. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/bulk_execute.hpp +0 -0
  499. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/bulk_guarantee.hpp +0 -0
  500. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/connect.hpp +0 -0
  501. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/context.hpp +0 -0
  502. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/context_as.hpp +0 -0
  503. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/detail/as_invocable.hpp +0 -0
  504. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/detail/as_operation.hpp +0 -0
  505. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/detail/as_receiver.hpp +0 -0
  506. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/detail/bulk_sender.hpp +0 -0
  507. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/detail/submit_receiver.hpp +0 -0
  508. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/detail/void_receiver.hpp +0 -0
  509. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/execute.hpp +0 -0
  510. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/executor.hpp +0 -0
  511. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/impl/bad_executor.ipp +0 -0
  512. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/impl/receiver_invocation_error.ipp +0 -0
  513. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/invocable_archetype.hpp +0 -0
  514. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/mapping.hpp +0 -0
  515. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/occupancy.hpp +0 -0
  516. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/operation_state.hpp +0 -0
  517. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/outstanding_work.hpp +0 -0
  518. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/prefer_only.hpp +0 -0
  519. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/receiver.hpp +0 -0
  520. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/receiver_invocation_error.hpp +0 -0
  521. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/relationship.hpp +0 -0
  522. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/schedule.hpp +0 -0
  523. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/scheduler.hpp +0 -0
  524. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/sender.hpp +0 -0
  525. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/set_done.hpp +0 -0
  526. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/set_error.hpp +0 -0
  527. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/set_value.hpp +0 -0
  528. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/start.hpp +0 -0
  529. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/submit.hpp +0 -0
  530. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution.hpp +0 -0
  531. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution_context.hpp +0 -0
  532. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/executor.hpp +0 -0
  533. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/executor_work_guard.hpp +0 -0
  534. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/append.hpp +0 -0
  535. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/as_single.hpp +0 -0
  536. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/as_tuple.hpp +0 -0
  537. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/awaitable_operators.hpp +0 -0
  538. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/basic_channel.hpp +0 -0
  539. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/basic_concurrent_channel.hpp +0 -0
  540. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/cancellation_condition.hpp +0 -0
  541. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/channel.hpp +0 -0
  542. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/channel_error.hpp +0 -0
  543. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/channel_traits.hpp +0 -0
  544. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/co_spawn.hpp +0 -0
  545. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/concurrent_channel.hpp +0 -0
  546. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/coro.hpp +0 -0
  547. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/coro_traits.hpp +0 -0
  548. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/deferred.hpp +0 -0
  549. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_handler.hpp +0 -0
  550. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_message.hpp +0 -0
  551. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_operation.hpp +0 -0
  552. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_payload.hpp +0 -0
  553. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_receive_op.hpp +0 -0
  554. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_send_functions.hpp +0 -0
  555. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_send_op.hpp +0 -0
  556. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_service.hpp +0 -0
  557. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/completion_handler_erasure.hpp +0 -0
  558. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/coro_promise_allocator.hpp +0 -0
  559. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/has_signature.hpp +0 -0
  560. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/impl/channel_service.hpp +0 -0
  561. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/partial_promise.hpp +0 -0
  562. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/append.hpp +0 -0
  563. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/as_single.hpp +0 -0
  564. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/as_tuple.hpp +0 -0
  565. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/channel_error.ipp +0 -0
  566. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/coro.hpp +0 -0
  567. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/deferred.hpp +0 -0
  568. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/parallel_group.hpp +0 -0
  569. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/prepend.hpp +0 -0
  570. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/promise.hpp +0 -0
  571. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/use_coro.hpp +0 -0
  572. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/parallel_group.hpp +0 -0
  573. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/prepend.hpp +0 -0
  574. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/promise.hpp +0 -0
  575. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/use_coro.hpp +0 -0
  576. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/file_base.hpp +0 -0
  577. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/generic/basic_endpoint.hpp +0 -0
  578. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/generic/datagram_protocol.hpp +0 -0
  579. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/generic/detail/endpoint.hpp +0 -0
  580. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/generic/detail/impl/endpoint.ipp +0 -0
  581. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/generic/raw_protocol.hpp +0 -0
  582. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/generic/seq_packet_protocol.hpp +0 -0
  583. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/generic/stream_protocol.hpp +0 -0
  584. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/handler_alloc_hook.hpp +0 -0
  585. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/handler_continuation_hook.hpp +0 -0
  586. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/handler_invoke_hook.hpp +0 -0
  587. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/high_resolution_timer.hpp +0 -0
  588. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/any_io_executor.ipp +0 -0
  589. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/awaitable.hpp +0 -0
  590. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/buffered_read_stream.hpp +0 -0
  591. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/buffered_write_stream.hpp +0 -0
  592. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/cancellation_signal.ipp +0 -0
  593. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/co_spawn.hpp +0 -0
  594. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/compose.hpp +0 -0
  595. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/connect.hpp +0 -0
  596. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/connect_pipe.hpp +0 -0
  597. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/connect_pipe.ipp +0 -0
  598. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/defer.hpp +0 -0
  599. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/detached.hpp +0 -0
  600. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/dispatch.hpp +0 -0
  601. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/error.ipp +0 -0
  602. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/error_code.ipp +0 -0
  603. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/execution_context.hpp +0 -0
  604. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/execution_context.ipp +0 -0
  605. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/executor.hpp +0 -0
  606. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/executor.ipp +0 -0
  607. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/handler_alloc_hook.ipp +0 -0
  608. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/io_context.hpp +0 -0
  609. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/io_context.ipp +0 -0
  610. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/multiple_exceptions.ipp +0 -0
  611. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/post.hpp +0 -0
  612. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/read.hpp +0 -0
  613. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/read_at.hpp +0 -0
  614. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/read_until.hpp +0 -0
  615. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/redirect_error.hpp +0 -0
  616. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/serial_port_base.hpp +0 -0
  617. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/serial_port_base.ipp +0 -0
  618. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/spawn.hpp +0 -0
  619. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/src.hpp +0 -0
  620. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/system_context.hpp +0 -0
  621. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/system_context.ipp +0 -0
  622. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/system_executor.hpp +0 -0
  623. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/thread_pool.hpp +0 -0
  624. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/thread_pool.ipp +0 -0
  625. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/use_awaitable.hpp +0 -0
  626. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/use_future.hpp +0 -0
  627. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/write.hpp +0 -0
  628. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/write_at.hpp +0 -0
  629. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/io_context.hpp +0 -0
  630. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/io_context_strand.hpp +0 -0
  631. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/io_service.hpp +0 -0
  632. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/io_service_strand.hpp +0 -0
  633. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/address.hpp +0 -0
  634. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/address_v4.hpp +0 -0
  635. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/address_v4_iterator.hpp +0 -0
  636. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/address_v4_range.hpp +0 -0
  637. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/address_v6.hpp +0 -0
  638. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/address_v6_iterator.hpp +0 -0
  639. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/address_v6_range.hpp +0 -0
  640. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/bad_address_cast.hpp +0 -0
  641. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/basic_endpoint.hpp +0 -0
  642. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/basic_resolver.hpp +0 -0
  643. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/basic_resolver_entry.hpp +0 -0
  644. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/basic_resolver_iterator.hpp +0 -0
  645. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/basic_resolver_query.hpp +0 -0
  646. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/basic_resolver_results.hpp +0 -0
  647. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/detail/endpoint.hpp +0 -0
  648. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/detail/impl/endpoint.ipp +0 -0
  649. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/detail/socket_option.hpp +0 -0
  650. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/host_name.hpp +0 -0
  651. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/icmp.hpp +0 -0
  652. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/address.hpp +0 -0
  653. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/address.ipp +0 -0
  654. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/address_v4.hpp +0 -0
  655. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/address_v4.ipp +0 -0
  656. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/address_v6.hpp +0 -0
  657. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/address_v6.ipp +0 -0
  658. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/basic_endpoint.hpp +0 -0
  659. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/host_name.ipp +0 -0
  660. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/network_v4.hpp +0 -0
  661. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/network_v4.ipp +0 -0
  662. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/network_v6.hpp +0 -0
  663. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/network_v6.ipp +0 -0
  664. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/multicast.hpp +0 -0
  665. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/network_v4.hpp +0 -0
  666. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/network_v6.hpp +0 -0
  667. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/resolver_base.hpp +0 -0
  668. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/resolver_query_base.hpp +0 -0
  669. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/tcp.hpp +0 -0
  670. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/udp.hpp +0 -0
  671. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/unicast.hpp +0 -0
  672. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/v6_only.hpp +0 -0
  673. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/is_applicable_property.hpp +0 -0
  674. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/is_executor.hpp +0 -0
  675. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/is_read_buffered.hpp +0 -0
  676. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/is_write_buffered.hpp +0 -0
  677. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/local/basic_endpoint.hpp +0 -0
  678. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/local/connect_pair.hpp +0 -0
  679. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/local/datagram_protocol.hpp +0 -0
  680. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/local/detail/endpoint.hpp +0 -0
  681. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/local/detail/impl/endpoint.ipp +0 -0
  682. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/local/stream_protocol.hpp +0 -0
  683. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/multiple_exceptions.hpp +0 -0
  684. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/packaged_task.hpp +0 -0
  685. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/placeholders.hpp +0 -0
  686. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/posix/basic_descriptor.hpp +0 -0
  687. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/posix/basic_stream_descriptor.hpp +0 -0
  688. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/posix/descriptor.hpp +0 -0
  689. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/posix/descriptor_base.hpp +0 -0
  690. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/posix/stream_descriptor.hpp +0 -0
  691. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/post.hpp +0 -0
  692. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/prefer.hpp +0 -0
  693. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/query.hpp +0 -0
  694. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/random_access_file.hpp +0 -0
  695. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/read.hpp +0 -0
  696. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/read_at.hpp +0 -0
  697. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/read_until.hpp +0 -0
  698. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/readable_pipe.hpp +0 -0
  699. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/recycling_allocator.hpp +0 -0
  700. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/redirect_error.hpp +0 -0
  701. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/registered_buffer.hpp +0 -0
  702. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/require.hpp +0 -0
  703. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/require_concept.hpp +0 -0
  704. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/serial_port.hpp +0 -0
  705. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/serial_port_base.hpp +0 -0
  706. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/signal_set.hpp +0 -0
  707. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/socket_base.hpp +0 -0
  708. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/spawn.hpp +0 -0
  709. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/context.hpp +0 -0
  710. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/context_base.hpp +0 -0
  711. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/buffered_handshake_op.hpp +0 -0
  712. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/engine.hpp +0 -0
  713. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/handshake_op.hpp +0 -0
  714. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/impl/engine.ipp +0 -0
  715. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/impl/openssl_init.ipp +0 -0
  716. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/io.hpp +0 -0
  717. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/openssl_init.hpp +0 -0
  718. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/openssl_types.hpp +0 -0
  719. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/password_callback.hpp +0 -0
  720. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/read_op.hpp +0 -0
  721. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/shutdown_op.hpp +0 -0
  722. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/stream_core.hpp +0 -0
  723. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/verify_callback.hpp +0 -0
  724. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/write_op.hpp +0 -0
  725. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/error.hpp +0 -0
  726. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/host_name_verification.hpp +0 -0
  727. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/impl/context.hpp +0 -0
  728. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/impl/context.ipp +0 -0
  729. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/impl/error.ipp +0 -0
  730. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/impl/host_name_verification.ipp +0 -0
  731. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/impl/rfc2818_verification.ipp +0 -0
  732. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/impl/src.hpp +0 -0
  733. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/rfc2818_verification.hpp +0 -0
  734. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/stream.hpp +0 -0
  735. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/stream_base.hpp +0 -0
  736. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/verify_context.hpp +0 -0
  737. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/verify_mode.hpp +0 -0
  738. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl.hpp +0 -0
  739. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/static_thread_pool.hpp +0 -0
  740. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/steady_timer.hpp +0 -0
  741. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/strand.hpp +0 -0
  742. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/stream_file.hpp +0 -0
  743. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/streambuf.hpp +0 -0
  744. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/system_context.hpp +0 -0
  745. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/system_error.hpp +0 -0
  746. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/system_executor.hpp +0 -0
  747. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/system_timer.hpp +0 -0
  748. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/this_coro.hpp +0 -0
  749. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/thread.hpp +0 -0
  750. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/thread_pool.hpp +0 -0
  751. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/time_traits.hpp +0 -0
  752. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/bulk_execute_free.hpp +0 -0
  753. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/bulk_execute_member.hpp +0 -0
  754. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/connect_free.hpp +0 -0
  755. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/connect_member.hpp +0 -0
  756. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/equality_comparable.hpp +0 -0
  757. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/execute_free.hpp +0 -0
  758. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/execute_member.hpp +0 -0
  759. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/prefer_free.hpp +0 -0
  760. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/prefer_member.hpp +0 -0
  761. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/query_free.hpp +0 -0
  762. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/query_member.hpp +0 -0
  763. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/query_static_constexpr_member.hpp +0 -0
  764. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/require_concept_free.hpp +0 -0
  765. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/require_concept_member.hpp +0 -0
  766. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/require_free.hpp +0 -0
  767. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/require_member.hpp +0 -0
  768. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/schedule_free.hpp +0 -0
  769. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/schedule_member.hpp +0 -0
  770. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/set_done_free.hpp +0 -0
  771. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/set_done_member.hpp +0 -0
  772. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/set_error_free.hpp +0 -0
  773. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/set_error_member.hpp +0 -0
  774. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/set_value_free.hpp +0 -0
  775. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/set_value_member.hpp +0 -0
  776. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/start_free.hpp +0 -0
  777. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/start_member.hpp +0 -0
  778. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/static_query.hpp +0 -0
  779. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/static_require.hpp +0 -0
  780. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/static_require_concept.hpp +0 -0
  781. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/submit_free.hpp +0 -0
  782. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/submit_member.hpp +0 -0
  783. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/buffer.hpp +0 -0
  784. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/executor.hpp +0 -0
  785. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/internet.hpp +0 -0
  786. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/io_context.hpp +0 -0
  787. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/net.hpp +0 -0
  788. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/netfwd.hpp +0 -0
  789. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/socket.hpp +0 -0
  790. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/timer.hpp +0 -0
  791. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/unyield.hpp +0 -0
  792. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/use_awaitable.hpp +0 -0
  793. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/use_future.hpp +0 -0
  794. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/uses_executor.hpp +0 -0
  795. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/version.hpp +0 -0
  796. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/wait_traits.hpp +0 -0
  797. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/basic_object_handle.hpp +0 -0
  798. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/basic_overlapped_handle.hpp +0 -0
  799. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/basic_random_access_handle.hpp +0 -0
  800. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/basic_stream_handle.hpp +0 -0
  801. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/object_handle.hpp +0 -0
  802. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/overlapped_handle.hpp +0 -0
  803. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/overlapped_ptr.hpp +0 -0
  804. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/random_access_handle.hpp +0 -0
  805. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/stream_handle.hpp +0 -0
  806. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/writable_pipe.hpp +0 -0
  807. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/write.hpp +0 -0
  808. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/write_at.hpp +0 -0
  809. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/yield.hpp +0 -0
  810. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio.hpp +0 -0
  811. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/release.pl +0 -0
  812. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/.gitignore +0 -0
  813. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/Makefile.am +0 -0
  814. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/Makefile.mgw +0 -0
  815. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/Makefile.msc +0 -0
  816. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/asio.cpp +0 -0
  817. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/asio_ssl.cpp +0 -0
  818. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/.gitignore +0 -0
  819. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/Jamfile.v2 +0 -0
  820. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/asio.png +0 -0
  821. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/asio.qbk +0 -0
  822. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/asioref.sty +0 -0
  823. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/asioref.xsl +0 -0
  824. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/boost_bind_dox.txt +0 -0
  825. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/doxy2qbk.pl +0 -0
  826. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/examples.qbk +0 -0
  827. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/history.qbk +0 -0
  828. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/index.xml +0 -0
  829. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/makepdf.pl +0 -0
  830. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/net_ts.qbk +0 -0
  831. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/noncopyable_dox.txt +0 -0
  832. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/allocation.qbk +0 -0
  833. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/async.qbk +0 -0
  834. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/async_op1.dot +0 -0
  835. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/async_op1.png +0 -0
  836. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/async_op2.dot +0 -0
  837. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/async_op2.png +0 -0
  838. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/basics.qbk +0 -0
  839. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/bsd_sockets.qbk +0 -0
  840. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/buffers.qbk +0 -0
  841. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/cancellation.qbk +0 -0
  842. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/concurrency_hint.qbk +0 -0
  843. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/coro.qbk +0 -0
  844. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/coroutine.qbk +0 -0
  845. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/cpp2011.qbk +0 -0
  846. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/cpp20_coroutines.qbk +0 -0
  847. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/handler_tracking.qbk +0 -0
  848. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/implementation.qbk +0 -0
  849. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/iostreams.qbk +0 -0
  850. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/line_based.qbk +0 -0
  851. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/allocators.qbk +0 -0
  852. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/associators.qbk +0 -0
  853. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_agent_chain.png +0 -0
  854. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_agent_model.png +0 -0
  855. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_agents.qbk +0 -0
  856. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_child_agent_chain.png +0 -0
  857. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_op_init_complete.png +0 -0
  858. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_op_model.png +0 -0
  859. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_op_phases.png +0 -0
  860. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_op_trivial_chain.png +0 -0
  861. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_ops.qbk +0 -0
  862. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/cancellation.qbk +0 -0
  863. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/child_agents.qbk +0 -0
  864. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/completion_token_model.png +0 -0
  865. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/completion_token_transform.png +0 -0
  866. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/completion_tokens.qbk +0 -0
  867. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/executors.qbk +0 -0
  868. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/higher_level_model.png +0 -0
  869. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/higher_levels.qbk +0 -0
  870. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/library_elements.qbk +0 -0
  871. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model.qbk +0 -0
  872. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/other_protocols.qbk +0 -0
  873. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/posix.qbk +0 -0
  874. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/proactor.dot +0 -0
  875. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/proactor.png +0 -0
  876. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/protocols.qbk +0 -0
  877. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/rationale.qbk +0 -0
  878. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/reactor.qbk +0 -0
  879. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/serial_ports.qbk +0 -0
  880. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/signals.qbk +0 -0
  881. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/spawn.qbk +0 -0
  882. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/ssl.qbk +0 -0
  883. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/strands.qbk +0 -0
  884. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/streams.qbk +0 -0
  885. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/sync_op.dot +0 -0
  886. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/sync_op.png +0 -0
  887. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/threads.qbk +0 -0
  888. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/timers.qbk +0 -0
  889. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/windows.qbk +0 -0
  890. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview.qbk +0 -0
  891. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/platform_macros.pl +0 -0
  892. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/platform_macros.qbk +0 -0
  893. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/project-root.jam +0 -0
  894. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/quickref.xml +0 -0
  895. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/reference.dox +0 -0
  896. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/reference.qbk +0 -0
  897. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/reference.xsl +0 -0
  898. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/release_checklist.htm +0 -0
  899. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/AcceptHandler.qbk +0 -0
  900. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/AcceptToken.qbk +0 -0
  901. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/AcceptableProtocol.qbk +0 -0
  902. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/AsyncRandomAccessReadDevice.qbk +0 -0
  903. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/AsyncRandomAccessWriteDevice.qbk +0 -0
  904. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/AsyncReadStream.qbk +0 -0
  905. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/AsyncWriteStream.qbk +0 -0
  906. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/BufferedHandshakeHandler.qbk +0 -0
  907. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/BufferedHandshakeToken.qbk +0 -0
  908. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/CancellationHandler.qbk +0 -0
  909. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/CancellationSlot.qbk +0 -0
  910. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/CompletionCondition.qbk +0 -0
  911. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ConnectCondition.qbk +0 -0
  912. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ConnectHandler.qbk +0 -0
  913. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ConnectToken.qbk +0 -0
  914. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ConstBufferSequence.qbk +0 -0
  915. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/DynamicBuffer.qbk +0 -0
  916. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/DynamicBuffer_v1.qbk +0 -0
  917. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/DynamicBuffer_v2.qbk +0 -0
  918. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Endpoint.qbk +0 -0
  919. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/EndpointSequence.qbk +0 -0
  920. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ExecutionContext.qbk +0 -0
  921. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Executor.qbk +0 -0
  922. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/GettableSerialPortOption.qbk +0 -0
  923. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/GettableSocketOption.qbk +0 -0
  924. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Handler.qbk +0 -0
  925. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/HandshakeHandler.qbk +0 -0
  926. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/HandshakeToken.qbk +0 -0
  927. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/InternetProtocol.qbk +0 -0
  928. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/IoControlCommand.qbk +0 -0
  929. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/IoObjectService.qbk +0 -0
  930. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/IteratorConnectHandler.qbk +0 -0
  931. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/IteratorConnectToken.qbk +0 -0
  932. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/LegacyCompletionHandler.qbk +0 -0
  933. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/MoveAcceptHandler.qbk +0 -0
  934. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/MoveAcceptToken.qbk +0 -0
  935. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/MutableBufferSequence.qbk +0 -0
  936. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/NullaryToken.qbk +0 -0
  937. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/OperationState.qbk +0 -0
  938. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ProtoAllocator.qbk +0 -0
  939. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Protocol.qbk +0 -0
  940. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/RangeConnectHandler.qbk +0 -0
  941. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/RangeConnectToken.qbk +0 -0
  942. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ReadHandler.qbk +0 -0
  943. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ReadToken.qbk +0 -0
  944. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Receiver.qbk +0 -0
  945. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ResolveHandler.qbk +0 -0
  946. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ResolveToken.qbk +0 -0
  947. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Scheduler.qbk +0 -0
  948. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Sender.qbk +0 -0
  949. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Service.qbk +0 -0
  950. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SettableSerialPortOption.qbk +0 -0
  951. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SettableSocketOption.qbk +0 -0
  952. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ShutdownHandler.qbk +0 -0
  953. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ShutdownToken.qbk +0 -0
  954. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SignalHandler.qbk +0 -0
  955. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SignalToken.qbk +0 -0
  956. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SyncRandomAccessReadDevice.qbk +0 -0
  957. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SyncRandomAccessWriteDevice.qbk +0 -0
  958. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SyncReadStream.qbk +0 -0
  959. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SyncWriteStream.qbk +0 -0
  960. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/TimeTraits.qbk +0 -0
  961. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/WaitHandler.qbk +0 -0
  962. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/WaitToken.qbk +0 -0
  963. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/WaitTraits.qbk +0 -0
  964. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/WriteHandler.qbk +0 -0
  965. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/WriteToken.qbk +0 -0
  966. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/asynchronous_operations.qbk +0 -0
  967. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/asynchronous_socket_operations.qbk +0 -0
  968. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/read_write_operations.qbk +0 -0
  969. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/synchronous_socket_operations.qbk +0 -0
  970. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/std_exception_dox.txt +0 -0
  971. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/std_executors.qbk +0 -0
  972. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/tutorial.dox +0 -0
  973. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/tutorial.qbk +0 -0
  974. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/tutorial.xsl +0 -0
  975. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/using.qbk +0 -0
  976. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/tools/handlerlive.pl +0 -0
  977. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/tools/handlertree.pl +0 -0
  978. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/tools/handlerviz.pl +0 -0
  979. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/tsify.pl +0 -0
  980. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/CMakeLists.txt +0 -0
  981. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/discovery/tst_InterfaceScanner.cpp +0 -0
  982. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/discovery/tst_Payload.cpp +0 -0
  983. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/discovery/tst_PeerGateway.cpp +0 -0
  984. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/discovery/tst_PeerGateways.cpp +0 -0
  985. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/discovery/tst_UdpMessenger.cpp +0 -0
  986. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/discovery/v1/tst_Messages.cpp +0 -0
  987. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Beats.cpp +0 -0
  988. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_ClientSessionTimelines.cpp +0 -0
  989. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Controller.cpp +0 -0
  990. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_HostTimeFilter.cpp +0 -0
  991. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_LinearRegression.cpp +0 -0
  992. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Measurement.cpp +0 -0
  993. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Median.cpp +0 -0
  994. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Peers.cpp +0 -0
  995. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Phase.cpp +0 -0
  996. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_PingResponder.cpp +0 -0
  997. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_StartStopState.cpp +0 -0
  998. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Tempo.cpp +0 -0
  999. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Timeline.cpp +0 -0
  1000. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_TripleBuffer.cpp +0 -0
  1001. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/test/catch/CatchMain.cpp +0 -0
  1002. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/test/serial_io/SchedulerTree.cpp +0 -0
  1003. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/third_party/catch/catch.hpp +0 -0
  1004. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.appveyor.yml +0 -0
  1005. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.clang-format +0 -0
  1006. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.cmake-format.yaml +0 -0
  1007. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.codespell-ignore-lines +0 -0
  1008. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.git +0 -0
  1009. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.gitattributes +0 -0
  1010. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.gitignore +0 -0
  1011. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.readthedocs.yml +0 -0
  1012. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/LICENSE +0 -0
  1013. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/MANIFEST.in +0 -0
  1014. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/README.rst +0 -0
  1015. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/SECURITY.md +0 -0
  1016. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/attr.h +0 -0
  1017. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/buffer_info.h +0 -0
  1018. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/chrono.h +0 -0
  1019. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/common.h +0 -0
  1020. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/complex.h +0 -0
  1021. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/descr.h +0 -0
  1022. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/typeid.h +0 -0
  1023. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/eigen/common.h +0 -0
  1024. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/eigen.h +0 -0
  1025. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/embed.h +0 -0
  1026. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/eval.h +0 -0
  1027. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/gil.h +0 -0
  1028. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/iostream.h +0 -0
  1029. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/operators.h +0 -0
  1030. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/options.h +0 -0
  1031. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/stl.h +0 -0
  1032. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
  1033. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/noxfile.py +0 -0
  1034. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/pybind11/__init__.py +0 -0
  1035. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/pybind11/commands.py +0 -0
  1036. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/pybind11/py.typed +0 -0
  1037. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/pybind11/setup_helpers.py +0 -0
  1038. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/pyproject.toml +0 -0
  1039. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/setup.cfg +0 -0
  1040. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/setup.py +0 -0
  1041. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/FindCatch.cmake +0 -0
  1042. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/FindEigen3.cmake +0 -0
  1043. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/FindPythonLibsNew.cmake +0 -0
  1044. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/JoinPaths.cmake +0 -0
  1045. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/check-style.sh +0 -0
  1046. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/cmake_uninstall.cmake.in +0 -0
  1047. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/codespell_ignore_lines_from_errors.py +0 -0
  1048. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/libsize.py +0 -0
  1049. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/make_changelog.py +0 -0
  1050. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/pybind11.pc.in +0 -0
  1051. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +0 -0
  1052. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/pybind11NewTools.cmake +0 -0
  1053. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/pybind11Tools.cmake +0 -0
  1054. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/pyproject.toml +0 -0
  1055. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/setup_global.py.in +0 -0
  1056. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/setup_main.py.in +0 -0
  1057. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +0 -0
  1058. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/setup.cfg +0 -0
  1059. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/setup.py +0 -0
  1060. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src-py/LinkPython_extern.egg-info/dependency_links.txt +0 -0
  1061. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src-py/LinkPython_extern.egg-info/top_level.txt +0 -0
  1062. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src-py/link/__init__.py +0 -0
  1063. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src-py/link/__init__.pyi +0 -0
  1064. {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src-py/link/py.typed +0 -0
@@ -9,6 +9,11 @@
9
9
  *.egg-info/
10
10
  dist/
11
11
 
12
+ # Byte-compiled / optimized / DLL files
13
+ __pycache__/
14
+ *.py[cod]
15
+ *$py.class
16
+
12
17
  # System temporary files
13
18
  .DS_Store
14
19
  *~
@@ -1,4 +1,4 @@
1
- cmake_minimum_required(VERSION 3.0)
1
+ cmake_minimum_required(VERSION 3.0...4.0)
2
2
 
3
3
  project(LinkPython)
4
4
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: LinkPython-extern
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: A fork of the LinkPython wrapper for Ableton Link
5
5
  Author: gonzaloflirt
6
6
  Maintainer: thegamecracks
@@ -40,6 +40,9 @@ Classifier: Topic :: System :: Networking
40
40
  Requires-Python: <3.14,>=3.7
41
41
  Description-Content-Type: text/markdown
42
42
  License-File: LICENSE.md
43
+ Provides-Extra: tests
44
+ Requires-Dist: pytest>=7.4.4; extra == "tests"
45
+ Dynamic: license-file
43
46
 
44
47
  # Python wrapper for [Ableton Link][1]
45
48
 
@@ -57,10 +57,12 @@ Checks: |
57
57
  readability-string-compare,
58
58
  readability-suspicious-call-argument,
59
59
  readability-uniqueptr-delete-release,
60
+ -bugprone-chained-comparison,
60
61
  -bugprone-easily-swappable-parameters,
61
62
  -bugprone-exception-escape,
62
63
  -bugprone-reserved-identifier,
63
64
  -bugprone-unused-raii,
65
+ -performance-enum-size,
64
66
 
65
67
  CheckOptions:
66
68
  - key: modernize-use-equals-default.IgnoreMacros
@@ -25,14 +25,14 @@ repos:
25
25
 
26
26
  # Clang format the codebase automatically
27
27
  - repo: https://github.com/pre-commit/mirrors-clang-format
28
- rev: "v18.1.5"
28
+ rev: "v18.1.8"
29
29
  hooks:
30
30
  - id: clang-format
31
31
  types_or: [c++, c, cuda]
32
32
 
33
33
  # Ruff, the Python auto-correcting linter/formatter written in Rust
34
34
  - repo: https://github.com/astral-sh/ruff-pre-commit
35
- rev: v0.4.7
35
+ rev: v0.6.3
36
36
  hooks:
37
37
  - id: ruff
38
38
  args: ["--fix", "--show-fixes"]
@@ -40,7 +40,7 @@ repos:
40
40
 
41
41
  # Check static types with mypy
42
42
  - repo: https://github.com/pre-commit/mirrors-mypy
43
- rev: "v1.10.0"
43
+ rev: "v1.11.2"
44
44
  hooks:
45
45
  - id: mypy
46
46
  args: []
@@ -79,7 +79,7 @@ repos:
79
79
 
80
80
  # Also code format the docs
81
81
  - repo: https://github.com/adamchainz/blacken-docs
82
- rev: "1.16.0"
82
+ rev: "1.18.0"
83
83
  hooks:
84
84
  - id: blacken-docs
85
85
  additional_dependencies:
@@ -93,7 +93,7 @@ repos:
93
93
 
94
94
  # Avoid directional quotes
95
95
  - repo: https://github.com/sirosen/texthooks
96
- rev: "0.6.6"
96
+ rev: "0.6.7"
97
97
  hooks:
98
98
  - id: fix-ligatures
99
99
  - id: fix-smartquotes
@@ -142,14 +142,14 @@ repos:
142
142
 
143
143
  # PyLint has native support - not always usable, but works for us
144
144
  - repo: https://github.com/PyCQA/pylint
145
- rev: "v3.2.2"
145
+ rev: "v3.2.7"
146
146
  hooks:
147
147
  - id: pylint
148
148
  files: ^pybind11
149
149
 
150
150
  # Check schemas on some of our YAML files
151
151
  - repo: https://github.com/python-jsonschema/check-jsonschema
152
- rev: 0.28.4
152
+ rev: 0.29.2
153
153
  hooks:
154
154
  - id: check-readthedocs
155
155
  - id: check-github-workflows
@@ -149,11 +149,14 @@ endif()
149
149
  set(PYBIND11_HEADERS
150
150
  include/pybind11/detail/class.h
151
151
  include/pybind11/detail/common.h
152
+ include/pybind11/detail/cpp_conduit.h
152
153
  include/pybind11/detail/descr.h
153
154
  include/pybind11/detail/init.h
154
155
  include/pybind11/detail/internals.h
155
156
  include/pybind11/detail/type_caster_base.h
156
157
  include/pybind11/detail/typeid.h
158
+ include/pybind11/detail/value_and_holder.h
159
+ include/pybind11/detail/exception_translation.h
157
160
  include/pybind11/attr.h
158
161
  include/pybind11/buffer_info.h
159
162
  include/pybind11/cast.h
@@ -740,6 +740,13 @@ class type_caster<std::pair<T1, T2>> : public tuple_caster<std::pair, T1, T2> {}
740
740
  template <typename... Ts>
741
741
  class type_caster<std::tuple<Ts...>> : public tuple_caster<std::tuple, Ts...> {};
742
742
 
743
+ template <>
744
+ class type_caster<std::tuple<>> : public tuple_caster<std::tuple> {
745
+ public:
746
+ // PEP 484 specifies this syntax for an empty tuple
747
+ static constexpr auto name = const_name("tuple[()]");
748
+ };
749
+
743
750
  /// Helper class which abstracts away certain actions. Users can provide specializations for
744
751
  /// custom holders, but it's only necessary if the type has a non-standard interface.
745
752
  template <typename T>
@@ -787,11 +794,11 @@ protected:
787
794
  }
788
795
  }
789
796
 
790
- bool load_value(value_and_holder &&v_h) {
797
+ void load_value(value_and_holder &&v_h) {
791
798
  if (v_h.holder_constructed()) {
792
799
  value = v_h.value_ptr();
793
800
  holder = v_h.template holder<holder_type>();
794
- return true;
801
+ return;
795
802
  }
796
803
  throw cast_error("Unable to cast from non-held to held instance (T& to Holder<T>) "
797
804
  #if !defined(PYBIND11_DETAILED_ERROR_MESSAGES)
@@ -9,8 +9,10 @@
9
9
 
10
10
  #pragma once
11
11
 
12
- #include "../attr.h"
13
- #include "../options.h"
12
+ #include <pybind11/attr.h>
13
+ #include <pybind11/options.h>
14
+
15
+ #include "exception_translation.h"
14
16
 
15
17
  PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE)
16
18
  PYBIND11_NAMESPACE_BEGIN(detail)
@@ -591,7 +593,18 @@ extern "C" inline int pybind11_getbuffer(PyObject *obj, Py_buffer *view, int fla
591
593
  return -1;
592
594
  }
593
595
  std::memset(view, 0, sizeof(Py_buffer));
594
- buffer_info *info = tinfo->get_buffer(obj, tinfo->get_buffer_data);
596
+ buffer_info *info = nullptr;
597
+ try {
598
+ info = tinfo->get_buffer(obj, tinfo->get_buffer_data);
599
+ } catch (...) {
600
+ try_translate_exceptions();
601
+ raise_from(PyExc_BufferError, "Error getting buffer");
602
+ return -1;
603
+ }
604
+ if (info == nullptr) {
605
+ pybind11_fail("FATAL UNEXPECTED SITUATION: tinfo->get_buffer() returned nullptr.");
606
+ }
607
+
595
608
  if ((flags & PyBUF_WRITABLE) == PyBUF_WRITABLE && info->readonly) {
596
609
  delete info;
597
610
  // view->obj = nullptr; // Was just memset to 0, so not necessary
@@ -11,11 +11,11 @@
11
11
 
12
12
  #define PYBIND11_VERSION_MAJOR 2
13
13
  #define PYBIND11_VERSION_MINOR 13
14
- #define PYBIND11_VERSION_PATCH 1
14
+ #define PYBIND11_VERSION_PATCH 6
15
15
 
16
16
  // Similar to Python's convention: https://docs.python.org/3/c-api/apiabiversion.html
17
17
  // Additional convention: 0xD = dev
18
- #define PYBIND11_VERSION_HEX 0x020D0100
18
+ #define PYBIND11_VERSION_HEX 0x020D0600
19
19
 
20
20
  // Define some generic pybind11 helper macros for warning management.
21
21
  //
@@ -462,7 +462,25 @@ PYBIND11_WARNING_POP
462
462
  return "Hello, World!";
463
463
  });
464
464
  }
465
+
466
+ The third macro argument is optional (available since 2.13.0), and can be used to
467
+ mark the extension module as safe to run without the GIL under a free-threaded CPython
468
+ interpreter. Passing this argument has no effect on other interpreters.
469
+
470
+ .. code-block:: cpp
471
+
472
+ PYBIND11_MODULE(example, m, py::mod_gil_not_used()) {
473
+ m.doc() = "pybind11 example module safe to run without the GIL";
474
+
475
+ // Add bindings here
476
+ m.def("foo", []() {
477
+ return "Hello, Free-threaded World!";
478
+ });
479
+ }
480
+
465
481
  \endrst */
482
+ PYBIND11_WARNING_PUSH
483
+ PYBIND11_WARNING_DISABLE_CLANG("-Wgnu-zero-variadic-macro-arguments")
466
484
  #define PYBIND11_MODULE(name, variable, ...) \
467
485
  static ::pybind11::module_::module_def PYBIND11_CONCAT(pybind11_module_def_, name) \
468
486
  PYBIND11_MAYBE_UNUSED; \
@@ -483,6 +501,7 @@ PYBIND11_WARNING_POP
483
501
  PYBIND11_CATCH_INIT_EXCEPTIONS \
484
502
  } \
485
503
  void PYBIND11_CONCAT(pybind11_init_, name)(::pybind11::module_ & (variable))
504
+ PYBIND11_WARNING_POP
486
505
 
487
506
  PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE)
488
507
 
@@ -538,7 +557,7 @@ enum class return_value_policy : uint8_t {
538
557
  object without taking ownership similar to the above
539
558
  return_value_policy::reference policy. In contrast to that policy, the
540
559
  function or property's implicit this argument (called the parent) is
541
- considered to be the the owner of the return value (the child).
560
+ considered to be the owner of the return value (the child).
542
561
  pybind11 then couples the lifetime of the parent to the child via a
543
562
  reference relationship that ensures that the parent cannot be garbage
544
563
  collected while Python is still using the child. More advanced
@@ -0,0 +1,77 @@
1
+ // Copyright (c) 2024 The pybind Community.
2
+
3
+ #pragma once
4
+
5
+ #include <pybind11/pytypes.h>
6
+
7
+ #include "common.h"
8
+ #include "internals.h"
9
+
10
+ #include <typeinfo>
11
+
12
+ PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE)
13
+ PYBIND11_NAMESPACE_BEGIN(detail)
14
+
15
+ // Forward declaration needed here: Refactoring opportunity.
16
+ extern "C" inline PyObject *pybind11_object_new(PyTypeObject *type, PyObject *, PyObject *);
17
+
18
+ inline bool type_is_managed_by_our_internals(PyTypeObject *type_obj) {
19
+ #if defined(PYPY_VERSION)
20
+ auto &internals = get_internals();
21
+ return bool(internals.registered_types_py.find(type_obj)
22
+ != internals.registered_types_py.end());
23
+ #else
24
+ return bool(type_obj->tp_new == pybind11_object_new);
25
+ #endif
26
+ }
27
+
28
+ inline bool is_instance_method_of_type(PyTypeObject *type_obj, PyObject *attr_name) {
29
+ PyObject *descr = _PyType_Lookup(type_obj, attr_name);
30
+ return bool((descr != nullptr) && PyInstanceMethod_Check(descr));
31
+ }
32
+
33
+ inline object try_get_cpp_conduit_method(PyObject *obj) {
34
+ if (PyType_Check(obj)) {
35
+ return object();
36
+ }
37
+ PyTypeObject *type_obj = Py_TYPE(obj);
38
+ str attr_name("_pybind11_conduit_v1_");
39
+ bool assumed_to_be_callable = false;
40
+ if (type_is_managed_by_our_internals(type_obj)) {
41
+ if (!is_instance_method_of_type(type_obj, attr_name.ptr())) {
42
+ return object();
43
+ }
44
+ assumed_to_be_callable = true;
45
+ }
46
+ PyObject *method = PyObject_GetAttr(obj, attr_name.ptr());
47
+ if (method == nullptr) {
48
+ PyErr_Clear();
49
+ return object();
50
+ }
51
+ if (!assumed_to_be_callable && PyCallable_Check(method) == 0) {
52
+ Py_DECREF(method);
53
+ return object();
54
+ }
55
+ return reinterpret_steal<object>(method);
56
+ }
57
+
58
+ inline void *try_raw_pointer_ephemeral_from_cpp_conduit(handle src,
59
+ const std::type_info *cpp_type_info) {
60
+ object method = try_get_cpp_conduit_method(src.ptr());
61
+ if (method) {
62
+ capsule cpp_type_info_capsule(const_cast<void *>(static_cast<const void *>(cpp_type_info)),
63
+ typeid(std::type_info).name());
64
+ object cpp_conduit = method(bytes(PYBIND11_PLATFORM_ABI_ID),
65
+ cpp_type_info_capsule,
66
+ bytes("raw_pointer_ephemeral"));
67
+ if (isinstance<capsule>(cpp_conduit)) {
68
+ return reinterpret_borrow<capsule>(cpp_conduit).get_pointer();
69
+ }
70
+ }
71
+ return nullptr;
72
+ }
73
+
74
+ #define PYBIND11_HAS_CPP_CONDUIT 1
75
+
76
+ PYBIND11_NAMESPACE_END(detail)
77
+ PYBIND11_NAMESPACE_END(PYBIND11_NAMESPACE)
@@ -0,0 +1,71 @@
1
+ /*
2
+ pybind11/detail/exception_translation.h: means to translate C++ exceptions to Python exceptions
3
+
4
+ Copyright (c) 2024 The Pybind Development Team.
5
+
6
+ All rights reserved. Use of this source code is governed by a
7
+ BSD-style license that can be found in the LICENSE file.
8
+ */
9
+
10
+ #pragma once
11
+
12
+ #include "common.h"
13
+ #include "internals.h"
14
+
15
+ PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE)
16
+ PYBIND11_NAMESPACE_BEGIN(detail)
17
+
18
+ // Apply all the extensions translators from a list
19
+ // Return true if one of the translators completed without raising an exception
20
+ // itself. Return of false indicates that if there are other translators
21
+ // available, they should be tried.
22
+ inline bool apply_exception_translators(std::forward_list<ExceptionTranslator> &translators) {
23
+ auto last_exception = std::current_exception();
24
+
25
+ for (auto &translator : translators) {
26
+ try {
27
+ translator(last_exception);
28
+ return true;
29
+ } catch (...) {
30
+ last_exception = std::current_exception();
31
+ }
32
+ }
33
+ return false;
34
+ }
35
+
36
+ inline void try_translate_exceptions() {
37
+ /* When an exception is caught, give each registered exception
38
+ translator a chance to translate it to a Python exception. First
39
+ all module-local translators will be tried in reverse order of
40
+ registration. If none of the module-locale translators handle
41
+ the exception (or there are no module-locale translators) then
42
+ the global translators will be tried, also in reverse order of
43
+ registration.
44
+
45
+ A translator may choose to do one of the following:
46
+
47
+ - catch the exception and call py::set_error()
48
+ to set a standard (or custom) Python exception, or
49
+ - do nothing and let the exception fall through to the next translator, or
50
+ - delegate translation to the next translator by throwing a new type of exception.
51
+ */
52
+
53
+ bool handled = with_internals([&](internals &internals) {
54
+ auto &local_exception_translators = get_local_internals().registered_exception_translators;
55
+ if (detail::apply_exception_translators(local_exception_translators)) {
56
+ return true;
57
+ }
58
+ auto &exception_translators = internals.registered_exception_translators;
59
+ if (detail::apply_exception_translators(exception_translators)) {
60
+ return true;
61
+ }
62
+ return false;
63
+ });
64
+
65
+ if (!handled) {
66
+ set_error(PyExc_SystemError, "Exception escaped from default exception translator!");
67
+ }
68
+ }
69
+
70
+ PYBIND11_NAMESPACE_END(detail)
71
+ PYBIND11_NAMESPACE_END(PYBIND11_NAMESPACE)
@@ -128,11 +128,13 @@ void construct(value_and_holder &v_h, Cpp<Class> *ptr, bool need_alias) {
128
128
  // the holder and destruction happens when we leave the C++ scope, and the holder
129
129
  // class gets to handle the destruction however it likes.
130
130
  v_h.value_ptr() = ptr;
131
- v_h.set_instance_registered(true); // To prevent init_instance from registering it
132
- v_h.type->init_instance(v_h.inst, nullptr); // Set up the holder
131
+ v_h.set_instance_registered(true); // Trick to prevent init_instance from registering it
132
+ // DANGER ZONE BEGIN: exceptions will leave v_h in an invalid state.
133
+ v_h.type->init_instance(v_h.inst, nullptr); // Set up the holder
133
134
  Holder<Class> temp_holder(std::move(v_h.holder<Holder<Class>>())); // Steal the holder
134
135
  v_h.type->dealloc(v_h); // Destroys the moved-out holder remains, resets value ptr to null
135
136
  v_h.set_instance_registered(false);
137
+ // DANGER ZONE END.
136
138
 
137
139
  construct_alias_from_cpp<Class>(is_alias_constructible<Class>{}, v_h, std::move(*ptr));
138
140
  } else {
@@ -12,10 +12,10 @@
12
12
  #include "common.h"
13
13
 
14
14
  #if defined(PYBIND11_SIMPLE_GIL_MANAGEMENT)
15
- # include "../gil.h"
15
+ # include <pybind11/gil.h>
16
16
  #endif
17
17
 
18
- #include "../pytypes.h"
18
+ #include <pybind11/pytypes.h>
19
19
 
20
20
  #include <exception>
21
21
  #include <mutex>
@@ -148,20 +148,35 @@ struct override_hash {
148
148
 
149
149
  using instance_map = std::unordered_multimap<const void *, instance *>;
150
150
 
151
+ #ifdef Py_GIL_DISABLED
152
+ // Wrapper around PyMutex to provide BasicLockable semantics
153
+ class pymutex {
154
+ PyMutex mutex;
155
+
156
+ public:
157
+ pymutex() : mutex({}) {}
158
+ void lock() { PyMutex_Lock(&mutex); }
159
+ void unlock() { PyMutex_Unlock(&mutex); }
160
+ };
161
+
151
162
  // Instance map shards are used to reduce mutex contention in free-threaded Python.
152
163
  struct instance_map_shard {
153
- std::mutex mutex;
154
164
  instance_map registered_instances;
165
+ pymutex mutex;
155
166
  // alignas(64) would be better, but causes compile errors in macOS before 10.14 (see #5200)
156
- char padding[64 - (sizeof(std::mutex) + sizeof(instance_map)) % 64];
167
+ char padding[64 - (sizeof(instance_map) + sizeof(pymutex)) % 64];
157
168
  };
158
169
 
170
+ static_assert(sizeof(instance_map_shard) % 64 == 0,
171
+ "instance_map_shard size is not a multiple of 64 bytes");
172
+ #endif
173
+
159
174
  /// Internal data structure used to track registered instances and types.
160
175
  /// Whenever binary incompatible changes are made to this structure,
161
176
  /// `PYBIND11_INTERNALS_VERSION` must be incremented.
162
177
  struct internals {
163
178
  #ifdef Py_GIL_DISABLED
164
- std::mutex mutex;
179
+ pymutex mutex;
165
180
  #endif
166
181
  // std::type_index -> pybind11's type information
167
182
  type_map<type_info *> registered_types_cpp;
@@ -306,15 +321,17 @@ struct type_info {
306
321
  # define PYBIND11_INTERNALS_KIND ""
307
322
  #endif
308
323
 
324
+ #define PYBIND11_PLATFORM_ABI_ID \
325
+ PYBIND11_INTERNALS_KIND PYBIND11_COMPILER_TYPE PYBIND11_STDLIB PYBIND11_BUILD_ABI \
326
+ PYBIND11_BUILD_TYPE
327
+
309
328
  #define PYBIND11_INTERNALS_ID \
310
329
  "__pybind11_internals_v" PYBIND11_TOSTRING(PYBIND11_INTERNALS_VERSION) \
311
- PYBIND11_INTERNALS_KIND PYBIND11_COMPILER_TYPE PYBIND11_STDLIB \
312
- PYBIND11_BUILD_ABI PYBIND11_BUILD_TYPE "__"
330
+ PYBIND11_PLATFORM_ABI_ID "__"
313
331
 
314
332
  #define PYBIND11_MODULE_LOCAL_ID \
315
333
  "__pybind11_module_local_v" PYBIND11_TOSTRING(PYBIND11_INTERNALS_VERSION) \
316
- PYBIND11_INTERNALS_KIND PYBIND11_COMPILER_TYPE PYBIND11_STDLIB \
317
- PYBIND11_BUILD_ABI PYBIND11_BUILD_TYPE "__"
334
+ PYBIND11_PLATFORM_ABI_ID "__"
318
335
 
319
336
  /// Each module locally stores a pointer to the `internals` data. The data
320
337
  /// itself is shared among modules with the same `PYBIND11_INTERNALS_ID`.
@@ -538,7 +555,7 @@ PYBIND11_NOINLINE internals &get_internals() {
538
555
  }
539
556
  #endif
540
557
  internals_ptr->istate = tstate->interp;
541
- state_dict[PYBIND11_INTERNALS_ID] = capsule(internals_pp);
558
+ state_dict[PYBIND11_INTERNALS_ID] = capsule(reinterpret_cast<void *>(internals_pp));
542
559
  internals_ptr->registered_exception_translators.push_front(&translate_exception);
543
560
  internals_ptr->static_property_type = make_static_property_type();
544
561
  internals_ptr->default_metaclass = make_default_metaclass();
@@ -614,7 +631,7 @@ inline local_internals &get_local_internals() {
614
631
  }
615
632
 
616
633
  #ifdef Py_GIL_DISABLED
617
- # define PYBIND11_LOCK_INTERNALS(internals) std::unique_lock<std::mutex> lock((internals).mutex)
634
+ # define PYBIND11_LOCK_INTERNALS(internals) std::unique_lock<pymutex> lock((internals).mutex)
618
635
  #else
619
636
  # define PYBIND11_LOCK_INTERNALS(internals)
620
637
  #endif
@@ -651,7 +668,7 @@ inline auto with_instance_map(const void *ptr,
651
668
  auto idx = static_cast<size_t>(hash & internals.instance_shards_mask);
652
669
 
653
670
  auto &shard = internals.instance_shards[idx];
654
- std::unique_lock<std::mutex> lock(shard.mutex);
671
+ std::unique_lock<pymutex> lock(shard.mutex);
655
672
  return cb(shard.registered_instances);
656
673
  #else
657
674
  (void) ptr;
@@ -667,7 +684,7 @@ inline size_t num_registered_instances() {
667
684
  size_t count = 0;
668
685
  for (size_t i = 0; i <= internals.instance_shards_mask; ++i) {
669
686
  auto &shard = internals.instance_shards[i];
670
- std::unique_lock<std::mutex> lock(shard.mutex);
687
+ std::unique_lock<pymutex> lock(shard.mutex);
671
688
  count += shard.registered_instances.size();
672
689
  }
673
690
  return count;
@@ -9,15 +9,20 @@
9
9
 
10
10
  #pragma once
11
11
 
12
- #include "../pytypes.h"
12
+ #include <pybind11/pytypes.h>
13
+
13
14
  #include "common.h"
15
+ #include "cpp_conduit.h"
14
16
  #include "descr.h"
15
17
  #include "internals.h"
16
18
  #include "typeid.h"
19
+ #include "value_and_holder.h"
17
20
 
18
21
  #include <cstdint>
22
+ #include <cstring>
19
23
  #include <iterator>
20
24
  #include <new>
25
+ #include <stdexcept>
21
26
  #include <string>
22
27
  #include <type_traits>
23
28
  #include <typeindex>
@@ -259,67 +264,6 @@ PYBIND11_NOINLINE handle find_registered_python_instance(void *src,
259
264
  });
260
265
  }
261
266
 
262
- struct value_and_holder {
263
- instance *inst = nullptr;
264
- size_t index = 0u;
265
- const detail::type_info *type = nullptr;
266
- void **vh = nullptr;
267
-
268
- // Main constructor for a found value/holder:
269
- value_and_holder(instance *i, const detail::type_info *type, size_t vpos, size_t index)
270
- : inst{i}, index{index}, type{type},
271
- vh{inst->simple_layout ? inst->simple_value_holder
272
- : &inst->nonsimple.values_and_holders[vpos]} {}
273
-
274
- // Default constructor (used to signal a value-and-holder not found by get_value_and_holder())
275
- value_and_holder() = default;
276
-
277
- // Used for past-the-end iterator
278
- explicit value_and_holder(size_t index) : index{index} {}
279
-
280
- template <typename V = void>
281
- V *&value_ptr() const {
282
- return reinterpret_cast<V *&>(vh[0]);
283
- }
284
- // True if this `value_and_holder` has a non-null value pointer
285
- explicit operator bool() const { return value_ptr() != nullptr; }
286
-
287
- template <typename H>
288
- H &holder() const {
289
- return reinterpret_cast<H &>(vh[1]);
290
- }
291
- bool holder_constructed() const {
292
- return inst->simple_layout
293
- ? inst->simple_holder_constructed
294
- : (inst->nonsimple.status[index] & instance::status_holder_constructed) != 0u;
295
- }
296
- // NOLINTNEXTLINE(readability-make-member-function-const)
297
- void set_holder_constructed(bool v = true) {
298
- if (inst->simple_layout) {
299
- inst->simple_holder_constructed = v;
300
- } else if (v) {
301
- inst->nonsimple.status[index] |= instance::status_holder_constructed;
302
- } else {
303
- inst->nonsimple.status[index] &= (std::uint8_t) ~instance::status_holder_constructed;
304
- }
305
- }
306
- bool instance_registered() const {
307
- return inst->simple_layout
308
- ? inst->simple_instance_registered
309
- : ((inst->nonsimple.status[index] & instance::status_instance_registered) != 0);
310
- }
311
- // NOLINTNEXTLINE(readability-make-member-function-const)
312
- void set_instance_registered(bool v = true) {
313
- if (inst->simple_layout) {
314
- inst->simple_instance_registered = v;
315
- } else if (v) {
316
- inst->nonsimple.status[index] |= instance::status_instance_registered;
317
- } else {
318
- inst->nonsimple.status[index] &= (std::uint8_t) ~instance::status_instance_registered;
319
- }
320
- }
321
- };
322
-
323
267
  // Container for accessing and iterating over an instance's values/holders
324
268
  struct values_and_holders {
325
269
  private:
@@ -488,7 +432,7 @@ PYBIND11_NOINLINE void instance::allocate_layout() {
488
432
  // NOLINTNEXTLINE(readability-make-member-function-const)
489
433
  PYBIND11_NOINLINE void instance::deallocate_layout() {
490
434
  if (!simple_layout) {
491
- PyMem_Free(nonsimple.values_and_holders);
435
+ PyMem_Free(reinterpret_cast<void *>(nonsimple.values_and_holders));
492
436
  }
493
437
  }
494
438
 
@@ -670,6 +614,13 @@ public:
670
614
  }
671
615
  return false;
672
616
  }
617
+ bool try_cpp_conduit(handle src) {
618
+ value = try_raw_pointer_ephemeral_from_cpp_conduit(src, cpptype);
619
+ if (value != nullptr) {
620
+ return true;
621
+ }
622
+ return false;
623
+ }
673
624
  void check_holder_compat() {}
674
625
 
675
626
  PYBIND11_NOINLINE static void *local_load(PyObject *src, const type_info *ti) {
@@ -801,6 +752,10 @@ public:
801
752
  return true;
802
753
  }
803
754
 
755
+ if (convert && cpptype && this_.try_cpp_conduit(src)) {
756
+ return true;
757
+ }
758
+
804
759
  return false;
805
760
  }
806
761
 
@@ -828,6 +783,32 @@ public:
828
783
  void *value = nullptr;
829
784
  };
830
785
 
786
+ inline object cpp_conduit_method(handle self,
787
+ const bytes &pybind11_platform_abi_id,
788
+ const capsule &cpp_type_info_capsule,
789
+ const bytes &pointer_kind) {
790
+ #ifdef PYBIND11_HAS_STRING_VIEW
791
+ using cpp_str = std::string_view;
792
+ #else
793
+ using cpp_str = std::string;
794
+ #endif
795
+ if (cpp_str(pybind11_platform_abi_id) != PYBIND11_PLATFORM_ABI_ID) {
796
+ return none();
797
+ }
798
+ if (std::strcmp(cpp_type_info_capsule.name(), typeid(std::type_info).name()) != 0) {
799
+ return none();
800
+ }
801
+ if (cpp_str(pointer_kind) != "raw_pointer_ephemeral") {
802
+ throw std::runtime_error("Invalid pointer_kind: \"" + std::string(pointer_kind) + "\"");
803
+ }
804
+ const auto *cpp_type_info = cpp_type_info_capsule.get_pointer<const std::type_info>();
805
+ type_caster_generic caster(*cpp_type_info);
806
+ if (!caster.load(self, false)) {
807
+ return none();
808
+ }
809
+ return capsule(caster.value, cpp_type_info->name());
810
+ }
811
+
831
812
  /**
832
813
  * Determine suitable casting operator for pointer-or-lvalue-casting type casters. The type caster
833
814
  * needs to provide `operator T*()` and `operator T&()` operators.