mediasoup 3.20.0 → 3.20.2

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 (360) hide show
  1. package/node/lib/Consumer.d.ts.map +1 -1
  2. package/node/lib/Consumer.js +5 -4
  3. package/node/lib/DataConsumer.d.ts +2 -3
  4. package/node/lib/DataConsumer.d.ts.map +1 -1
  5. package/node/lib/DataConsumer.js +10 -7
  6. package/node/lib/DataConsumerTypes.d.ts +5 -4
  7. package/node/lib/DataConsumerTypes.d.ts.map +1 -1
  8. package/node/lib/DataProducer.d.ts.map +1 -1
  9. package/node/lib/DataProducer.js +2 -1
  10. package/node/lib/PipeTransport.d.ts.map +1 -1
  11. package/node/lib/PipeTransport.js +5 -4
  12. package/node/lib/PlainTransport.d.ts.map +1 -1
  13. package/node/lib/PlainTransport.js +6 -5
  14. package/node/lib/Producer.d.ts.map +1 -1
  15. package/node/lib/Producer.js +4 -3
  16. package/node/lib/Router.js +1 -1
  17. package/node/lib/WebRtcTransport.d.ts.map +1 -1
  18. package/node/lib/WebRtcTransport.js +6 -5
  19. package/node/lib/fbs/consumer/degrade-request.d.ts +30 -0
  20. package/node/lib/fbs/consumer/degrade-request.d.ts.map +1 -0
  21. package/node/lib/fbs/consumer/degrade-request.js +124 -0
  22. package/node/lib/fbs/consumer/enable-delay-and-loss-request.d.ts +24 -0
  23. package/node/lib/fbs/consumer/enable-delay-and-loss-request.d.ts.map +1 -0
  24. package/node/lib/fbs/consumer/enable-delay-and-loss-request.js +102 -0
  25. package/node/lib/fbs/data-consumer/send-response.d.ts +21 -0
  26. package/node/lib/fbs/data-consumer/send-response.d.ts.map +1 -0
  27. package/node/lib/fbs/data-consumer/send-response.js +91 -0
  28. package/node/lib/fbs/data-consumer.d.ts +1 -0
  29. package/node/lib/fbs/data-consumer.d.ts.map +1 -1
  30. package/node/lib/fbs/data-consumer.js +4 -1
  31. package/node/lib/fbs/producer/degrade-request.d.ts +30 -0
  32. package/node/lib/fbs/producer/degrade-request.d.ts.map +1 -0
  33. package/node/lib/fbs/producer/degrade-request.js +124 -0
  34. package/node/lib/fbs/response/body.d.ts +7 -5
  35. package/node/lib/fbs/response/body.d.ts.map +1 -1
  36. package/node/lib/fbs/response/body.js +7 -3
  37. package/node/lib/fbs/response/response.d.ts +3 -2
  38. package/node/lib/fbs/response/response.d.ts.map +1 -1
  39. package/node/lib/fbs/sctp-parameters/num-sctp-streams.d.ts.map +1 -1
  40. package/node/lib/fbs/sctp-parameters/num-sctp-streams.js +5 -5
  41. package/node/lib/fbs/transport/sctp-negotiated-max-streams-notification.d.ts +24 -0
  42. package/node/lib/fbs/transport/sctp-negotiated-max-streams-notification.d.ts.map +1 -0
  43. package/node/lib/fbs/transport/sctp-negotiated-max-streams-notification.js +102 -0
  44. package/node/lib/fbs/transport/sctp-negotiated-options-notification.d.ts +24 -0
  45. package/node/lib/fbs/transport/sctp-negotiated-options-notification.d.ts.map +1 -0
  46. package/node/lib/fbs/transport/sctp-negotiated-options-notification.js +102 -0
  47. package/node/lib/fbs/worker/close-notification.d.ts +18 -0
  48. package/node/lib/fbs/worker/close-notification.d.ts.map +1 -0
  49. package/node/lib/fbs/worker/close-notification.js +78 -0
  50. package/node/lib/fbs/worker/close-request.d.ts +18 -0
  51. package/node/lib/fbs/worker/close-request.d.ts.map +1 -0
  52. package/node/lib/fbs/worker/close-request.js +78 -0
  53. package/node/lib/fbs/worker/close-worker-notification.d.ts +18 -0
  54. package/node/lib/fbs/worker/close-worker-notification.d.ts.map +1 -0
  55. package/node/lib/fbs/worker/close-worker-notification.js +78 -0
  56. package/node/lib/sctpParametersTypes.d.ts +23 -0
  57. package/node/lib/sctpParametersTypes.d.ts.map +1 -1
  58. package/node/lib/test/test-Consumer.js +194 -0
  59. package/node/lib/test/test-DataConsumer.js +6 -0
  60. package/node/lib/test/test-Router.js +11 -0
  61. package/node/lib/test/test-werift-sctp.js +7 -0
  62. package/npm-scripts.mjs +2 -2
  63. package/package.json +7 -6
  64. package/worker/Makefile +5 -1
  65. package/worker/deps/libwebrtc/meson.build +5 -1
  66. package/worker/fbs/dataConsumer.fbs +4 -0
  67. package/worker/fbs/response.fbs +1 -0
  68. package/worker/fuzzer/src/RTC/RTP/FuzzerPacket.cpp +2 -2
  69. package/worker/include/Channel/ChannelMessageRegistrator.hpp +4 -3
  70. package/worker/include/Channel/ChannelNotification.hpp +0 -4
  71. package/worker/include/Channel/ChannelRequest.hpp +3 -4
  72. package/worker/include/DepLibSRTP.hpp +2 -2
  73. package/worker/include/RTC/ActiveSpeakerObserver.hpp +2 -2
  74. package/worker/include/RTC/AudioLevelObserver.hpp +2 -2
  75. package/worker/include/RTC/Consumer.hpp +1 -1
  76. package/worker/include/RTC/DataConsumer.hpp +2 -2
  77. package/worker/include/RTC/DtlsTransport.hpp +4 -4
  78. package/worker/include/RTC/ICE/IceServer.hpp +2 -2
  79. package/worker/include/RTC/ICE/StunPacket.hpp +34 -34
  80. package/worker/include/RTC/KeyFrameRequestManager.hpp +3 -3
  81. package/worker/include/RTC/Parameters.hpp +2 -2
  82. package/worker/include/RTC/PipeConsumer.hpp +6 -5
  83. package/worker/include/RTC/PlainTransport.hpp +0 -1
  84. package/worker/include/RTC/PortManager.hpp +92 -12
  85. package/worker/include/RTC/Producer.hpp +7 -6
  86. package/worker/include/RTC/RTCP/Feedback.hpp +1 -2
  87. package/worker/include/RTC/RTCP/FeedbackRtpTransport.hpp +2 -2
  88. package/worker/include/RTC/RTCP/Packet.hpp +2 -2
  89. package/worker/include/RTC/RTCP/Sdes.hpp +1 -1
  90. package/worker/include/RTC/RTP/Codecs/DependencyDescriptor.hpp +2 -1
  91. package/worker/include/RTC/RTP/Packet.hpp +57 -57
  92. package/worker/include/RTC/RTP/ProbationGenerator.hpp +2 -2
  93. package/worker/include/RTC/RTP/SharedPacket.hpp +4 -4
  94. package/worker/include/RTC/Router.hpp +12 -11
  95. package/worker/include/RTC/RtcLogger.hpp +2 -2
  96. package/worker/include/RTC/RtpDictionaries.hpp +6 -6
  97. package/worker/include/RTC/RtpListener.hpp +4 -4
  98. package/worker/include/RTC/SCTP/association/Association.hpp +13 -13
  99. package/worker/include/RTC/SCTP/association/HeartbeatHandler.hpp +2 -2
  100. package/worker/include/RTC/SCTP/association/NegotiatedCapabilities.hpp +2 -2
  101. package/worker/include/RTC/SCTP/association/PacketSender.hpp +3 -3
  102. package/worker/include/RTC/SCTP/association/StateCookie.hpp +9 -9
  103. package/worker/include/RTC/SCTP/association/StreamResetHandler.hpp +4 -4
  104. package/worker/include/RTC/SCTP/association/TransmissionControlBlock.hpp +24 -24
  105. package/worker/include/RTC/SCTP/association/TransmissionControlBlockContextInterface.hpp +4 -4
  106. package/worker/include/RTC/SCTP/packet/Chunk.hpp +86 -86
  107. package/worker/include/RTC/SCTP/packet/ErrorCause.hpp +18 -18
  108. package/worker/include/RTC/SCTP/packet/Packet.hpp +33 -33
  109. package/worker/include/RTC/SCTP/packet/Parameter.hpp +24 -24
  110. package/worker/include/RTC/SCTP/packet/TLV.hpp +13 -13
  111. package/worker/include/RTC/SCTP/packet/UserData.hpp +4 -4
  112. package/worker/include/RTC/SCTP/packet/chunks/AbortAssociationChunk.hpp +5 -5
  113. package/worker/include/RTC/SCTP/packet/chunks/AnyDataChunk.hpp +9 -9
  114. package/worker/include/RTC/SCTP/packet/chunks/AnyForwardTsnChunk.hpp +3 -3
  115. package/worker/include/RTC/SCTP/packet/chunks/CookieAckChunk.hpp +5 -5
  116. package/worker/include/RTC/SCTP/packet/chunks/CookieEchoChunk.hpp +5 -5
  117. package/worker/include/RTC/SCTP/packet/chunks/DataChunk.hpp +11 -11
  118. package/worker/include/RTC/SCTP/packet/chunks/ForwardTsnChunk.hpp +6 -6
  119. package/worker/include/RTC/SCTP/packet/chunks/HeartbeatAckChunk.hpp +6 -6
  120. package/worker/include/RTC/SCTP/packet/chunks/HeartbeatRequestChunk.hpp +6 -6
  121. package/worker/include/RTC/SCTP/packet/chunks/IDataChunk.hpp +6 -6
  122. package/worker/include/RTC/SCTP/packet/chunks/IForwardTsnChunk.hpp +7 -7
  123. package/worker/include/RTC/SCTP/packet/chunks/InitAckChunk.hpp +10 -10
  124. package/worker/include/RTC/SCTP/packet/chunks/InitChunk.hpp +8 -8
  125. package/worker/include/RTC/SCTP/packet/chunks/OperationErrorChunk.hpp +6 -6
  126. package/worker/include/RTC/SCTP/packet/chunks/ReConfigChunk.hpp +10 -10
  127. package/worker/include/RTC/SCTP/packet/chunks/SackChunk.hpp +5 -5
  128. package/worker/include/RTC/SCTP/packet/chunks/ShutdownAckChunk.hpp +5 -5
  129. package/worker/include/RTC/SCTP/packet/chunks/ShutdownChunk.hpp +5 -5
  130. package/worker/include/RTC/SCTP/packet/chunks/ShutdownCompleteChunk.hpp +5 -5
  131. package/worker/include/RTC/SCTP/packet/chunks/UnknownChunk.hpp +2 -2
  132. package/worker/include/RTC/SCTP/packet/errorCauses/CookieReceivedWhileShuttingDownErrorCause.hpp +4 -4
  133. package/worker/include/RTC/SCTP/packet/errorCauses/InvalidMandatoryParameterErrorCause.hpp +4 -4
  134. package/worker/include/RTC/SCTP/packet/errorCauses/InvalidStreamIdentifierErrorCause.hpp +5 -5
  135. package/worker/include/RTC/SCTP/packet/errorCauses/MissingMandatoryParameterErrorCause.hpp +5 -5
  136. package/worker/include/RTC/SCTP/packet/errorCauses/NoUserDataErrorCause.hpp +5 -5
  137. package/worker/include/RTC/SCTP/packet/errorCauses/OutOfResourceErrorCause.hpp +4 -4
  138. package/worker/include/RTC/SCTP/packet/errorCauses/ProtocolViolationErrorCause.hpp +4 -4
  139. package/worker/include/RTC/SCTP/packet/errorCauses/RestartOfAnAssociationWithNewAddressesErrorCause.hpp +4 -4
  140. package/worker/include/RTC/SCTP/packet/errorCauses/StaleCookieErrorCause.hpp +5 -5
  141. package/worker/include/RTC/SCTP/packet/errorCauses/UnknownErrorCause.hpp +2 -2
  142. package/worker/include/RTC/SCTP/packet/errorCauses/UnrecognizedChunkTypeErrorCause.hpp +4 -4
  143. package/worker/include/RTC/SCTP/packet/errorCauses/UnrecognizedParametersErrorCause.hpp +4 -4
  144. package/worker/include/RTC/SCTP/packet/errorCauses/UnresolvableAddressErrorCause.hpp +4 -4
  145. package/worker/include/RTC/SCTP/packet/errorCauses/UserInitiatedAbortErrorCause.hpp +4 -4
  146. package/worker/include/RTC/SCTP/packet/parameters/AddIncomingStreamsRequestParameter.hpp +5 -5
  147. package/worker/include/RTC/SCTP/packet/parameters/AddOutgoingStreamsRequestParameter.hpp +5 -5
  148. package/worker/include/RTC/SCTP/packet/parameters/CookiePreservativeParameter.hpp +5 -5
  149. package/worker/include/RTC/SCTP/packet/parameters/ForwardTsnSupportedParameter.hpp +4 -4
  150. package/worker/include/RTC/SCTP/packet/parameters/HeartbeatInfoParameter.hpp +3 -3
  151. package/worker/include/RTC/SCTP/packet/parameters/IPv4AddressParameter.hpp +4 -4
  152. package/worker/include/RTC/SCTP/packet/parameters/IPv6AddressParameter.hpp +5 -5
  153. package/worker/include/RTC/SCTP/packet/parameters/IncomingSsnResetRequestParameter.hpp +5 -5
  154. package/worker/include/RTC/SCTP/packet/parameters/OutgoingSsnResetRequestParameter.hpp +5 -5
  155. package/worker/include/RTC/SCTP/packet/parameters/ReconfigurationResponseParameter.hpp +7 -7
  156. package/worker/include/RTC/SCTP/packet/parameters/SsnTsnResetRequestParameter.hpp +5 -5
  157. package/worker/include/RTC/SCTP/packet/parameters/StateCookieParameter.hpp +5 -5
  158. package/worker/include/RTC/SCTP/packet/parameters/SupportedAddressTypesParameter.hpp +4 -4
  159. package/worker/include/RTC/SCTP/packet/parameters/SupportedExtensionsParameter.hpp +4 -4
  160. package/worker/include/RTC/SCTP/packet/parameters/UnknownParameter.hpp +2 -2
  161. package/worker/include/RTC/SCTP/packet/parameters/UnrecognizedParameterParameter.hpp +4 -4
  162. package/worker/include/RTC/SCTP/packet/parameters/ZeroChecksumAcceptableParameter.hpp +7 -7
  163. package/worker/include/RTC/SCTP/public/AssociationInterface.hpp +7 -7
  164. package/worker/include/RTC/SCTP/public/AssociationListenerInterface.hpp +26 -26
  165. package/worker/include/RTC/SCTP/public/AssociationMetrics.hpp +7 -7
  166. package/worker/include/RTC/SCTP/public/Message.hpp +1 -1
  167. package/worker/include/RTC/SCTP/public/SctpOptions.hpp +4 -4
  168. package/worker/include/RTC/SCTP/public/SctpTypes.hpp +10 -10
  169. package/worker/include/RTC/SCTP/rx/DataTracker.hpp +1 -1
  170. package/worker/include/RTC/SCTP/rx/ReassemblyStreamsInterface.hpp +1 -1
  171. package/worker/include/RTC/SCTP/tx/OutstandingData.hpp +39 -39
  172. package/worker/include/RTC/SCTP/tx/RetransmissionErrorCounter.hpp +1 -1
  173. package/worker/include/RTC/SCTP/tx/RetransmissionQueue.hpp +14 -14
  174. package/worker/include/RTC/SCTP/tx/RoundRobinSendQueue.hpp +1 -1
  175. package/worker/include/RTC/SctpListener.hpp +2 -2
  176. package/worker/include/RTC/SimulcastConsumer.hpp +2 -1
  177. package/worker/include/RTC/TcpServer.hpp +3 -2
  178. package/worker/include/RTC/Transport.hpp +8 -8
  179. package/worker/include/RTC/UdpSocket.hpp +3 -2
  180. package/worker/include/RTC/WebRtcServer.hpp +4 -5
  181. package/worker/include/RTC/WebRtcTransport.hpp +2 -2
  182. package/worker/include/Settings.hpp +3 -3
  183. package/worker/include/Worker.hpp +3 -3
  184. package/worker/include/handles/TcpServerHandle.hpp +2 -2
  185. package/worker/meson.build +9 -4
  186. package/worker/mocks/include/Channel/MockChannelMessageRegistrator.hpp +4 -3
  187. package/worker/src/Channel/ChannelNotification.cpp +5 -4
  188. package/worker/src/Channel/ChannelRequest.cpp +9 -6
  189. package/worker/src/DepLibSRTP.cpp +1 -1
  190. package/worker/src/RTC/AudioLevelObserver.cpp +2 -2
  191. package/worker/src/RTC/DataConsumer.cpp +13 -3
  192. package/worker/src/RTC/DataProducer.cpp +1 -1
  193. package/worker/src/RTC/DtlsTransport.cpp +3 -3
  194. package/worker/src/RTC/ICE/IceServer.cpp +1 -1
  195. package/worker/src/RTC/ICE/StunPacket.cpp +77 -77
  196. package/worker/src/RTC/PipeTransport.cpp +5 -4
  197. package/worker/src/RTC/PlainTransport.cpp +9 -8
  198. package/worker/src/RTC/PortManager.cpp +174 -114
  199. package/worker/src/RTC/Producer.cpp +0 -1
  200. package/worker/src/RTC/RTCP/Feedback.cpp +6 -6
  201. package/worker/src/RTC/RTCP/FeedbackPs.cpp +1 -1
  202. package/worker/src/RTC/RTCP/FeedbackPsAfb.cpp +1 -1
  203. package/worker/src/RTC/RTCP/FeedbackPsPli.cpp +1 -1
  204. package/worker/src/RTC/RTCP/FeedbackPsRemb.cpp +2 -2
  205. package/worker/src/RTC/RTCP/FeedbackRtp.cpp +1 -1
  206. package/worker/src/RTC/RTCP/FeedbackRtpSrReq.cpp +1 -1
  207. package/worker/src/RTC/RTCP/FeedbackRtpTransport.cpp +2 -2
  208. package/worker/src/RTC/RTCP/Packet.cpp +2 -2
  209. package/worker/src/RTC/RTCP/Sdes.cpp +1 -1
  210. package/worker/src/RTC/RTP/Codecs/DependencyDescriptor.cpp +2 -1
  211. package/worker/src/RTC/RTP/Packet.cpp +68 -68
  212. package/worker/src/RTC/RTP/ProbationGenerator.cpp +3 -3
  213. package/worker/src/RTC/RTP/RtpStreamRecv.cpp +3 -3
  214. package/worker/src/RTC/RTP/RtxStream.cpp +2 -2
  215. package/worker/src/RTC/RTP/SharedPacket.cpp +4 -4
  216. package/worker/src/RTC/Router.cpp +5 -5
  217. package/worker/src/RTC/RtcLogger.cpp +1 -1
  218. package/worker/src/RTC/RtpDictionaries/RtpCodecMimeType.cpp +4 -4
  219. package/worker/src/RTC/RtpDictionaries/RtpParameters.cpp +2 -3
  220. package/worker/src/RTC/SCTP/association/Association.cpp +100 -97
  221. package/worker/src/RTC/SCTP/association/HeartbeatHandler.cpp +6 -6
  222. package/worker/src/RTC/SCTP/association/NegotiatedCapabilities.cpp +3 -3
  223. package/worker/src/RTC/SCTP/association/PacketSender.cpp +1 -1
  224. package/worker/src/RTC/SCTP/association/StreamResetHandler.cpp +2 -2
  225. package/worker/src/RTC/SCTP/association/TransmissionControlBlock.cpp +5 -5
  226. package/worker/src/RTC/SCTP/packet/Chunk.cpp +52 -52
  227. package/worker/src/RTC/SCTP/packet/ErrorCause.cpp +14 -14
  228. package/worker/src/RTC/SCTP/packet/Packet.cpp +17 -17
  229. package/worker/src/RTC/SCTP/packet/Parameter.cpp +17 -17
  230. package/worker/src/RTC/SCTP/packet/TLV.cpp +8 -8
  231. package/worker/src/RTC/SCTP/packet/chunks/AbortAssociationChunk.cpp +3 -3
  232. package/worker/src/RTC/SCTP/packet/chunks/CookieAckChunk.cpp +2 -2
  233. package/worker/src/RTC/SCTP/packet/chunks/CookieEchoChunk.cpp +1 -1
  234. package/worker/src/RTC/SCTP/packet/chunks/DataChunk.cpp +2 -2
  235. package/worker/src/RTC/SCTP/packet/chunks/ForwardTsnChunk.cpp +2 -2
  236. package/worker/src/RTC/SCTP/packet/chunks/HeartbeatAckChunk.cpp +3 -3
  237. package/worker/src/RTC/SCTP/packet/chunks/HeartbeatRequestChunk.cpp +3 -3
  238. package/worker/src/RTC/SCTP/packet/chunks/IDataChunk.cpp +2 -2
  239. package/worker/src/RTC/SCTP/packet/chunks/IForwardTsnChunk.cpp +2 -2
  240. package/worker/src/RTC/SCTP/packet/chunks/InitAckChunk.cpp +4 -4
  241. package/worker/src/RTC/SCTP/packet/chunks/InitChunk.cpp +4 -4
  242. package/worker/src/RTC/SCTP/packet/chunks/OperationErrorChunk.cpp +3 -3
  243. package/worker/src/RTC/SCTP/packet/chunks/ReConfigChunk.cpp +3 -3
  244. package/worker/src/RTC/SCTP/packet/chunks/SackChunk.cpp +3 -3
  245. package/worker/src/RTC/SCTP/packet/chunks/ShutdownAckChunk.cpp +2 -2
  246. package/worker/src/RTC/SCTP/packet/chunks/ShutdownChunk.cpp +2 -2
  247. package/worker/src/RTC/SCTP/packet/chunks/ShutdownCompleteChunk.cpp +2 -2
  248. package/worker/src/RTC/SCTP/packet/errorCauses/CookieReceivedWhileShuttingDownErrorCause.cpp +2 -2
  249. package/worker/src/RTC/SCTP/packet/errorCauses/InvalidMandatoryParameterErrorCause.cpp +2 -2
  250. package/worker/src/RTC/SCTP/packet/errorCauses/InvalidStreamIdentifierErrorCause.cpp +2 -2
  251. package/worker/src/RTC/SCTP/packet/errorCauses/MissingMandatoryParameterErrorCause.cpp +4 -4
  252. package/worker/src/RTC/SCTP/packet/errorCauses/NoUserDataErrorCause.cpp +2 -2
  253. package/worker/src/RTC/SCTP/packet/errorCauses/OutOfResourceErrorCause.cpp +2 -2
  254. package/worker/src/RTC/SCTP/packet/errorCauses/ProtocolViolationErrorCause.cpp +1 -1
  255. package/worker/src/RTC/SCTP/packet/errorCauses/RestartOfAnAssociationWithNewAddressesErrorCause.cpp +1 -1
  256. package/worker/src/RTC/SCTP/packet/errorCauses/StaleCookieErrorCause.cpp +2 -2
  257. package/worker/src/RTC/SCTP/packet/errorCauses/UnrecognizedChunkTypeErrorCause.cpp +1 -1
  258. package/worker/src/RTC/SCTP/packet/errorCauses/UnrecognizedParametersErrorCause.cpp +1 -1
  259. package/worker/src/RTC/SCTP/packet/errorCauses/UnresolvableAddressErrorCause.cpp +1 -1
  260. package/worker/src/RTC/SCTP/packet/errorCauses/UserInitiatedAbortErrorCause.cpp +1 -1
  261. package/worker/src/RTC/SCTP/packet/parameters/AddIncomingStreamsRequestParameter.cpp +2 -2
  262. package/worker/src/RTC/SCTP/packet/parameters/AddOutgoingStreamsRequestParameter.cpp +2 -2
  263. package/worker/src/RTC/SCTP/packet/parameters/CookiePreservativeParameter.cpp +2 -2
  264. package/worker/src/RTC/SCTP/packet/parameters/ForwardTsnSupportedParameter.cpp +2 -2
  265. package/worker/src/RTC/SCTP/packet/parameters/HeartbeatInfoParameter.cpp +1 -1
  266. package/worker/src/RTC/SCTP/packet/parameters/IPv4AddressParameter.cpp +2 -2
  267. package/worker/src/RTC/SCTP/packet/parameters/IPv6AddressParameter.cpp +2 -2
  268. package/worker/src/RTC/SCTP/packet/parameters/IncomingSsnResetRequestParameter.cpp +2 -2
  269. package/worker/src/RTC/SCTP/packet/parameters/OutgoingSsnResetRequestParameter.cpp +2 -2
  270. package/worker/src/RTC/SCTP/packet/parameters/ReconfigurationResponseParameter.cpp +3 -3
  271. package/worker/src/RTC/SCTP/packet/parameters/SsnTsnResetRequestParameter.cpp +2 -2
  272. package/worker/src/RTC/SCTP/packet/parameters/StateCookieParameter.cpp +3 -3
  273. package/worker/src/RTC/SCTP/packet/parameters/SupportedAddressTypesParameter.cpp +3 -3
  274. package/worker/src/RTC/SCTP/packet/parameters/SupportedExtensionsParameter.cpp +1 -1
  275. package/worker/src/RTC/SCTP/packet/parameters/UnrecognizedParameterParameter.cpp +1 -1
  276. package/worker/src/RTC/SCTP/packet/parameters/ZeroChecksumAcceptableParameter.cpp +3 -3
  277. package/worker/src/RTC/SCTP/rx/InterleavedReassemblyStreams.cpp +1 -0
  278. package/worker/src/RTC/SCTP/rx/TraditionalReassemblyStreams.cpp +1 -0
  279. package/worker/src/RTC/SCTP/tx/OutstandingData.cpp +8 -8
  280. package/worker/src/RTC/SCTP/tx/RoundRobinSendQueue.cpp +1 -1
  281. package/worker/src/RTC/SvcConsumer.cpp +6 -2
  282. package/worker/src/RTC/TcpServer.cpp +4 -4
  283. package/worker/src/RTC/Transport.cpp +42 -19
  284. package/worker/src/RTC/UdpSocket.cpp +4 -4
  285. package/worker/src/RTC/WebRtcServer.cpp +8 -8
  286. package/worker/src/RTC/WebRtcTransport.cpp +9 -8
  287. package/worker/src/Settings.cpp +2 -2
  288. package/worker/src/lib.cpp +1 -2
  289. package/worker/subprojects/packagefiles/ankerl-unordered-dense/meson.build +5 -0
  290. package/worker/subprojects/unordered-dense.wrap +9 -0
  291. package/worker/tasks.py +293 -196
  292. package/worker/test/src/RTC/ICE/TestStunPacket.cpp +22 -22
  293. package/worker/test/src/RTC/ICE/iceCommon.cpp +1 -1
  294. package/worker/test/src/RTC/RTCP/TestFeedbackRtpEcn.cpp +8 -8
  295. package/worker/test/src/RTC/RTCP/TestFeedbackRtpNack.cpp +1 -1
  296. package/worker/test/src/RTC/RTCP/TestFeedbackRtpSrReq.cpp +1 -1
  297. package/worker/test/src/RTC/RTCP/TestFeedbackRtpTllei.cpp +1 -1
  298. package/worker/test/src/RTC/RTCP/TestFeedbackRtpTmmb.cpp +1 -1
  299. package/worker/test/src/RTC/RTCP/TestSenderReport.cpp +1 -1
  300. package/worker/test/src/RTC/RTP/TestPacket.cpp +26 -26
  301. package/worker/test/src/RTC/RTP/TestSharedPacket.cpp +1 -1
  302. package/worker/test/src/RTC/RTP/rtpCommon.cpp +1 -1
  303. package/worker/test/src/RTC/SCTP/association/TestNegotiatedCapabilities.cpp +4 -4
  304. package/worker/test/src/RTC/SCTP/packet/TestPacket.cpp +14 -14
  305. package/worker/test/src/RTC/SCTP/packet/chunks/TestAbortAssociationChunk.cpp +4 -4
  306. package/worker/test/src/RTC/SCTP/packet/chunks/TestCookieAckChunk.cpp +1 -1
  307. package/worker/test/src/RTC/SCTP/packet/chunks/TestCookieEchoChunk.cpp +1 -1
  308. package/worker/test/src/RTC/SCTP/packet/chunks/TestForwardTsnChunk.cpp +3 -3
  309. package/worker/test/src/RTC/SCTP/packet/chunks/TestHeartbeatAckChunk.cpp +3 -3
  310. package/worker/test/src/RTC/SCTP/packet/chunks/TestHeartbeatRequestChunk.cpp +9 -9
  311. package/worker/test/src/RTC/SCTP/packet/chunks/TestIDataChunk.cpp +2 -2
  312. package/worker/test/src/RTC/SCTP/packet/chunks/TestIForwardTsnChunk.cpp +3 -3
  313. package/worker/test/src/RTC/SCTP/packet/chunks/TestInitAckChunk.cpp +3 -3
  314. package/worker/test/src/RTC/SCTP/packet/chunks/TestInitChunk.cpp +8 -8
  315. package/worker/test/src/RTC/SCTP/packet/chunks/TestOperationErrorChunk.cpp +7 -7
  316. package/worker/test/src/RTC/SCTP/packet/chunks/TestReConfigChunk.cpp +6 -6
  317. package/worker/test/src/RTC/SCTP/packet/chunks/TestSackChunk.cpp +2 -2
  318. package/worker/test/src/RTC/SCTP/packet/chunks/TestShutdownAckChunk.cpp +1 -1
  319. package/worker/test/src/RTC/SCTP/packet/chunks/TestShutdownCompleteChunk.cpp +1 -1
  320. package/worker/test/src/RTC/SCTP/packet/chunks/TestUnknownChunk.cpp +2 -2
  321. package/worker/test/src/RTC/SCTP/packet/errorCauses/TestCookieReceivedWhileShuttingDownErrorCause.cpp +1 -1
  322. package/worker/test/src/RTC/SCTP/packet/errorCauses/TestInvalidMandatoryParameterErrorCause.cpp +1 -1
  323. package/worker/test/src/RTC/SCTP/packet/errorCauses/TestInvalidStreamIdentifierErrorCause.cpp +6 -6
  324. package/worker/test/src/RTC/SCTP/packet/errorCauses/TestMissingMandatoryParameterErrorCause.cpp +11 -11
  325. package/worker/test/src/RTC/SCTP/packet/errorCauses/TestNoUserDataErrorCause.cpp +6 -6
  326. package/worker/test/src/RTC/SCTP/packet/errorCauses/TestOutOfResourceErrorCause.cpp +5 -5
  327. package/worker/test/src/RTC/SCTP/packet/errorCauses/TestProtocolViolationErrorCause.cpp +2 -2
  328. package/worker/test/src/RTC/SCTP/packet/errorCauses/TestRestartOfAnAssociationWithNewAddressesErrorCause.cpp +2 -2
  329. package/worker/test/src/RTC/SCTP/packet/errorCauses/TestStaleCookieErrorCause.cpp +6 -6
  330. package/worker/test/src/RTC/SCTP/packet/errorCauses/TestUnknownErrorCause.cpp +1 -1
  331. package/worker/test/src/RTC/SCTP/packet/errorCauses/TestUnrecognizedChunkTypeErrorCause.cpp +2 -2
  332. package/worker/test/src/RTC/SCTP/packet/errorCauses/TestUnrecognizedParametersErrorCause.cpp +1 -1
  333. package/worker/test/src/RTC/SCTP/packet/errorCauses/TestUnresolvableAddressErrorCause.cpp +2 -2
  334. package/worker/test/src/RTC/SCTP/packet/errorCauses/TestUserInitiatedAbortErrorCause.cpp +2 -2
  335. package/worker/test/src/RTC/SCTP/packet/parameters/TestAddIncomingStreamsRequestParameter.cpp +1 -1
  336. package/worker/test/src/RTC/SCTP/packet/parameters/TestAddOutgoingStreamsRequestParameter.cpp +1 -1
  337. package/worker/test/src/RTC/SCTP/packet/parameters/TestCookiePreservativeParameter.cpp +7 -7
  338. package/worker/test/src/RTC/SCTP/packet/parameters/TestForwardTsnSupportedParameter.cpp +1 -1
  339. package/worker/test/src/RTC/SCTP/packet/parameters/TestHeartbeatInfoParameter.cpp +2 -2
  340. package/worker/test/src/RTC/SCTP/packet/parameters/TestIPv4AddressParameter.cpp +7 -7
  341. package/worker/test/src/RTC/SCTP/packet/parameters/TestIPv6AddressParameter.cpp +7 -7
  342. package/worker/test/src/RTC/SCTP/packet/parameters/TestIncomingSsnResetRequestParameter.cpp +2 -2
  343. package/worker/test/src/RTC/SCTP/packet/parameters/TestOutgoingSsnResetRequestParameter.cpp +2 -2
  344. package/worker/test/src/RTC/SCTP/packet/parameters/TestReconfigurationResponseParameter.cpp +5 -5
  345. package/worker/test/src/RTC/SCTP/packet/parameters/TestSsnTsnResetRequestParameter.cpp +1 -1
  346. package/worker/test/src/RTC/SCTP/packet/parameters/TestStateCookieParameter.cpp +1 -1
  347. package/worker/test/src/RTC/SCTP/packet/parameters/TestSupportedAddressTypesParameter.cpp +6 -6
  348. package/worker/test/src/RTC/SCTP/packet/parameters/TestSupportedExtensionsParameter.cpp +3 -3
  349. package/worker/test/src/RTC/SCTP/packet/parameters/TestUnknownParameter.cpp +1 -1
  350. package/worker/test/src/RTC/SCTP/packet/parameters/TestUnrecognizedParameterParameter.cpp +1 -1
  351. package/worker/test/src/RTC/SCTP/packet/parameters/TestZeroChecksumAcceptableParameter.cpp +1 -1
  352. package/worker/test/src/RTC/SCTP/sctpCommon.cpp +1 -1
  353. package/worker/test/src/RTC/SCTP/tx/TestOutstandingData.cpp +3 -3
  354. package/worker/test/src/RTC/SCTP/tx/TestRetransmissionQueue.cpp +1 -1
  355. package/worker/test/src/RTC/TestNackGenerator.cpp +1 -1
  356. package/worker/test/src/RTC/TestPortManager.cpp +126 -0
  357. package/worker/test/src/RTC/TestTransportCongestionControlServer.cpp +2 -2
  358. package/worker/test/src/RTC/TestTransportTuple.cpp +3 -2
  359. package/worker/test/src/Utils/TestCrypto.cpp +3 -3
  360. package/worker/test/src/Utils/TestString.cpp +1 -1
@@ -12,7 +12,7 @@ namespace RTC
12
12
  {
13
13
  /**
14
14
  * SCTP Missing Mandatory Parameter Error Cause
15
- * (MISSING_MANDATORY_PARAMETER) (2)
15
+ * (MISSING-MANDATORY-PARAMETER) (2)
16
16
  *
17
17
  * @see RFC 9260.
18
18
  *
@@ -34,7 +34,7 @@ namespace RTC
34
34
 
35
35
  class MissingMandatoryParameterErrorCause : public ErrorCause
36
36
  {
37
- // We need that Chunk calls protected and private methods in this class.
37
+ // We need that chunk calls protected and private methods in this class.
38
38
  friend class Chunk;
39
39
 
40
40
  public:
@@ -45,7 +45,7 @@ namespace RTC
45
45
  * Parse a MissingMandatoryParameterErrorCause.
46
46
  *
47
47
  * @remarks
48
- * `bufferLength` may exceed the exact length of the Error Cause.
48
+ * `bufferLength` may exceed the exact length of the error cause.
49
49
  */
50
50
  static MissingMandatoryParameterErrorCause* Parse(const uint8_t* buffer, size_t bufferLength);
51
51
 
@@ -53,7 +53,7 @@ namespace RTC
53
53
  * Create a MissingMandatoryParameterErrorCause.
54
54
  *
55
55
  * @remarks
56
- * `bufferLength` could be greater than the Error Cause real length.
56
+ * `bufferLength` could be greater than the error cause real length.
57
57
  */
58
58
  static MissingMandatoryParameterErrorCause* Factory(uint8_t* buffer, size_t bufferLength);
59
59
 
@@ -97,7 +97,7 @@ namespace RTC
97
97
  MissingMandatoryParameterErrorCause* SoftClone(const uint8_t* buffer) const final;
98
98
 
99
99
  /**
100
- * We don't really need to override this method since this Error Cause
100
+ * We don't really need to override this method since this error cause
101
101
  * doesn't have variable-length value (despite the fixed header doesn't
102
102
  * have default length).
103
103
  */
@@ -10,7 +10,7 @@ namespace RTC
10
10
  namespace SCTP
11
11
  {
12
12
  /**
13
- * SCTP No User Data Error Cause (NO_USER_DATA) (9)
13
+ * SCTP No User Data Error Cause (NO-USER-DATA) (9)
14
14
  *
15
15
  * @see RFC 9260.
16
16
  *
@@ -28,7 +28,7 @@ namespace RTC
28
28
 
29
29
  class NoUserDataErrorCause : public ErrorCause
30
30
  {
31
- // We need that Chunk calls protected and private methods in this class.
31
+ // We need that chunk calls protected and private methods in this class.
32
32
  friend class Chunk;
33
33
 
34
34
  public:
@@ -39,7 +39,7 @@ namespace RTC
39
39
  * Parse a NoUserDataErrorCause.
40
40
  *
41
41
  * @remarks
42
- * `bufferLength` may exceed the exact length of the Error Cause.
42
+ * `bufferLength` may exceed the exact length of the error cause.
43
43
  */
44
44
  static NoUserDataErrorCause* Parse(const uint8_t* buffer, size_t bufferLength);
45
45
 
@@ -47,7 +47,7 @@ namespace RTC
47
47
  * Create a NoUserDataErrorCause.
48
48
  *
49
49
  * @remarks
50
- * `bufferLength` could be greater than the Error Cause real length.
50
+ * `bufferLength` could be greater than the error cause real length.
51
51
  */
52
52
  static NoUserDataErrorCause* Factory(uint8_t* buffer, size_t bufferLength);
53
53
 
@@ -85,7 +85,7 @@ namespace RTC
85
85
  NoUserDataErrorCause* SoftClone(const uint8_t* buffer) const final;
86
86
 
87
87
  /**
88
- * We don't really need to override this method since this Error Cause
88
+ * We don't really need to override this method since this error cause
89
89
  * doesn't have variable-length value (despite the fixed header doesn't
90
90
  * have default length).
91
91
  */
@@ -9,7 +9,7 @@ namespace RTC
9
9
  namespace SCTP
10
10
  {
11
11
  /**
12
- * SCTP Out of Resource Error Cause (OUT_OF_RESOURCE) (4)
12
+ * SCTP Out of Resource Error Cause (OUT-OF-RESOURCE) (4)
13
13
  *
14
14
  * @see RFC 9260.
15
15
  *
@@ -25,7 +25,7 @@ namespace RTC
25
25
 
26
26
  class OutOfResourceErrorCause : public ErrorCause
27
27
  {
28
- // We need that Chunk calls protected and private methods in this class.
28
+ // We need that chunk calls protected and private methods in this class.
29
29
  friend class Chunk;
30
30
 
31
31
  public:
@@ -33,7 +33,7 @@ namespace RTC
33
33
  * Parse a OutOfResourceErrorCause.
34
34
  *
35
35
  * @remarks
36
- * `bufferLength` may exceed the exact length of the Error Cause.
36
+ * `bufferLength` may exceed the exact length of the error cause.
37
37
  */
38
38
  static OutOfResourceErrorCause* Parse(const uint8_t* buffer, size_t bufferLength);
39
39
 
@@ -41,7 +41,7 @@ namespace RTC
41
41
  * Create a OutOfResourceErrorCause.
42
42
  *
43
43
  * @remarks
44
- * `bufferLength` could be greater than the Error Cause real length.
44
+ * `bufferLength` could be greater than the error cause real length.
45
45
  */
46
46
  static OutOfResourceErrorCause* Factory(uint8_t* buffer, size_t bufferLength);
47
47
 
@@ -9,7 +9,7 @@ namespace RTC
9
9
  namespace SCTP
10
10
  {
11
11
  /**
12
- * SCTP Protocol Violation Error Cause (PROTOCOL_VIOLATION) (13)
12
+ * SCTP Protocol Violation Error Cause (PROTOCOL-VIOLATION) (13)
13
13
  *
14
14
  * @see RFC 9260.
15
15
  *
@@ -28,7 +28,7 @@ namespace RTC
28
28
 
29
29
  class ProtocolViolationErrorCause : public ErrorCause
30
30
  {
31
- // We need that Chunk calls protected and private methods in this class.
31
+ // We need that chunk calls protected and private methods in this class.
32
32
  friend class Chunk;
33
33
 
34
34
  public:
@@ -36,7 +36,7 @@ namespace RTC
36
36
  * Parse a ProtocolViolationErrorCause.
37
37
  *
38
38
  * @remarks
39
- * `bufferLength` may exceed the exact length of the Error Cause.
39
+ * `bufferLength` may exceed the exact length of the error cause.
40
40
  */
41
41
  static ProtocolViolationErrorCause* Parse(const uint8_t* buffer, size_t bufferLength);
42
42
 
@@ -44,7 +44,7 @@ namespace RTC
44
44
  * Create a ProtocolViolationErrorCause.
45
45
  *
46
46
  * @remarks
47
- * `bufferLength` could be greater than the Error Cause real length.
47
+ * `bufferLength` could be greater than the error cause real length.
48
48
  */
49
49
  static ProtocolViolationErrorCause* Factory(uint8_t* buffer, size_t bufferLength);
50
50
 
@@ -10,7 +10,7 @@ namespace RTC
10
10
  {
11
11
  /**
12
12
  * SCTP Restart of an Association with New Addresses Error Cause
13
- * (RESTART_OF_AN_ASSOCIATION_WITH_NEW_ADDRESSES) (11)
13
+ * (RESTART-OF-AN-ASSOCIATION-WITH-NEW-ADDRESSES) (11)
14
14
  *
15
15
  * @see RFC 9260.
16
16
  *
@@ -29,7 +29,7 @@ namespace RTC
29
29
 
30
30
  class RestartOfAnAssociationWithNewAddressesErrorCause : public ErrorCause
31
31
  {
32
- // We need that Chunk calls protected and private methods in this class.
32
+ // We need that chunk calls protected and private methods in this class.
33
33
  friend class Chunk;
34
34
 
35
35
  public:
@@ -37,7 +37,7 @@ namespace RTC
37
37
  * Parse a RestartOfAnAssociationWithNewAddressesErrorCause.
38
38
  *
39
39
  * @remarks
40
- * `bufferLength` may exceed the exact length of the Error Cause.
40
+ * `bufferLength` may exceed the exact length of the error cause.
41
41
  */
42
42
  static RestartOfAnAssociationWithNewAddressesErrorCause* Parse(
43
43
  const uint8_t* buffer, size_t bufferLength);
@@ -46,7 +46,7 @@ namespace RTC
46
46
  * Create a RestartOfAnAssociationWithNewAddressesErrorCause.
47
47
  *
48
48
  * @remarks
49
- * `bufferLength` could be greater than the Error Cause real length.
49
+ * `bufferLength` could be greater than the error cause real length.
50
50
  */
51
51
  static RestartOfAnAssociationWithNewAddressesErrorCause* Factory(
52
52
  uint8_t* buffer, size_t bufferLength);
@@ -10,7 +10,7 @@ namespace RTC
10
10
  namespace SCTP
11
11
  {
12
12
  /**
13
- * SCTP Stale Cookie Error Cause (STALE_COOKIE) (3)
13
+ * SCTP Stale Cookie Error Cause (STALE-COOKIE) (3)
14
14
  *
15
15
  * @see RFC 9260.
16
16
  *
@@ -28,7 +28,7 @@ namespace RTC
28
28
 
29
29
  class StaleCookieErrorCause : public ErrorCause
30
30
  {
31
- // We need that Chunk calls protected and private methods in this class.
31
+ // We need that chunk calls protected and private methods in this class.
32
32
  friend class Chunk;
33
33
 
34
34
  public:
@@ -39,7 +39,7 @@ namespace RTC
39
39
  * Parse a StaleCookieErrorCause.
40
40
  *
41
41
  * @remarks
42
- * `bufferLength` may exceed the exact length of the Error Cause.
42
+ * `bufferLength` may exceed the exact length of the error cause.
43
43
  */
44
44
  static StaleCookieErrorCause* Parse(const uint8_t* buffer, size_t bufferLength);
45
45
 
@@ -47,7 +47,7 @@ namespace RTC
47
47
  * Create a StaleCookieErrorCause.
48
48
  *
49
49
  * @remarks
50
- * `bufferLength` could be greater than the Error Cause real length.
50
+ * `bufferLength` could be greater than the error cause real length.
51
51
  */
52
52
  static StaleCookieErrorCause* Factory(uint8_t* buffer, size_t bufferLength);
53
53
 
@@ -85,7 +85,7 @@ namespace RTC
85
85
  StaleCookieErrorCause* SoftClone(const uint8_t* buffer) const final;
86
86
 
87
87
  /**
88
- * We don't really need to override this method since this Error Cause
88
+ * We don't really need to override this method since this error cause
89
89
  * doesn't have variable-length value (despite the fixed header doesn't
90
90
  * have default length).
91
91
  */
@@ -26,7 +26,7 @@ namespace RTC
26
26
 
27
27
  class UnknownErrorCause : public ErrorCause
28
28
  {
29
- // We need that Chunk calls protected and private methods in this class.
29
+ // We need that chunk calls protected and private methods in this class.
30
30
  friend class Chunk;
31
31
 
32
32
  public:
@@ -34,7 +34,7 @@ namespace RTC
34
34
  * Parse a UnknownErrorCause.
35
35
  *
36
36
  * @remarks
37
- * `bufferLength` may exceed the exact length of the Error Cause.
37
+ * `bufferLength` may exceed the exact length of the error cause.
38
38
  */
39
39
  static UnknownErrorCause* Parse(const uint8_t* buffer, size_t bufferLength);
40
40
 
@@ -9,7 +9,7 @@ namespace RTC
9
9
  namespace SCTP
10
10
  {
11
11
  /**
12
- * SCTP Unrecognized Chunk Type Error Cause (UNRECOGNIZED_CHUNK_TYPE) (6)
12
+ * SCTP Unrecognized Chunk Type Error Cause (UNRECOGNIZED-CHUNK-TYPE) (6)
13
13
  *
14
14
  * @see RFC 9260.
15
15
  *
@@ -28,7 +28,7 @@ namespace RTC
28
28
 
29
29
  class UnrecognizedChunkTypeErrorCause : public ErrorCause
30
30
  {
31
- // We need that Chunk calls protected and private methods in this class.
31
+ // We need that chunk calls protected and private methods in this class.
32
32
  friend class Chunk;
33
33
 
34
34
  public:
@@ -36,7 +36,7 @@ namespace RTC
36
36
  * Parse a UnrecognizedChunkTypeErrorCause.
37
37
  *
38
38
  * @remarks
39
- * `bufferLength` may exceed the exact length of the Error Cause.
39
+ * `bufferLength` may exceed the exact length of the error cause.
40
40
  */
41
41
  static UnrecognizedChunkTypeErrorCause* Parse(const uint8_t* buffer, size_t bufferLength);
42
42
 
@@ -44,7 +44,7 @@ namespace RTC
44
44
  * Create a UnrecognizedChunkTypeErrorCause.
45
45
  *
46
46
  * @remarks
47
- * `bufferLength` could be greater than the Error Cause real length.
47
+ * `bufferLength` could be greater than the error cause real length.
48
48
  */
49
49
  static UnrecognizedChunkTypeErrorCause* Factory(uint8_t* buffer, size_t bufferLength);
50
50
 
@@ -9,7 +9,7 @@ namespace RTC
9
9
  namespace SCTP
10
10
  {
11
11
  /**
12
- * SCTP Unrecognized Parameters Error Cause (UNRECOGNIZED_PARAMETERS) (8)
12
+ * SCTP Unrecognized Parameters Error Cause (UNRECOGNIZED-PARAMETERS) (8)
13
13
  *
14
14
  * @see RFC 9260.
15
15
  *
@@ -28,7 +28,7 @@ namespace RTC
28
28
 
29
29
  class UnrecognizedParametersErrorCause : public ErrorCause
30
30
  {
31
- // We need that Chunk calls protected and private methods in this class.
31
+ // We need that chunk calls protected and private methods in this class.
32
32
  friend class Chunk;
33
33
 
34
34
  public:
@@ -36,7 +36,7 @@ namespace RTC
36
36
  * Parse a UnrecognizedParametersErrorCause.
37
37
  *
38
38
  * @remarks
39
- * `bufferLength` may exceed the exact length of the Error Cause.
39
+ * `bufferLength` may exceed the exact length of the error cause.
40
40
  */
41
41
  static UnrecognizedParametersErrorCause* Parse(const uint8_t* buffer, size_t bufferLength);
42
42
 
@@ -44,7 +44,7 @@ namespace RTC
44
44
  * Create a UnrecognizedParametersErrorCause.
45
45
  *
46
46
  * @remarks
47
- * `bufferLength` could be greater than the Error Cause real length.
47
+ * `bufferLength` could be greater than the error cause real length.
48
48
  */
49
49
  static UnrecognizedParametersErrorCause* Factory(uint8_t* buffer, size_t bufferLength);
50
50
 
@@ -9,7 +9,7 @@ namespace RTC
9
9
  namespace SCTP
10
10
  {
11
11
  /**
12
- * SCTP Unresolvable Address Error Cause (UNRESOLVABLE_ADDRESS) (5)
12
+ * SCTP Unresolvable Address Error Cause (UNRESOLVABLE-ADDRESS) (5)
13
13
  *
14
14
  * @see RFC 9260.
15
15
  *
@@ -28,7 +28,7 @@ namespace RTC
28
28
 
29
29
  class UnresolvableAddressErrorCause : public ErrorCause
30
30
  {
31
- // We need that Chunk calls protected and private methods in this class.
31
+ // We need that chunk calls protected and private methods in this class.
32
32
  friend class Chunk;
33
33
 
34
34
  public:
@@ -36,7 +36,7 @@ namespace RTC
36
36
  * Parse a UnresolvableAddressErrorCause.
37
37
  *
38
38
  * @remarks
39
- * `bufferLength` may exceed the exact length of the Error Cause.
39
+ * `bufferLength` may exceed the exact length of the error cause.
40
40
  */
41
41
  static UnresolvableAddressErrorCause* Parse(const uint8_t* buffer, size_t bufferLength);
42
42
 
@@ -44,7 +44,7 @@ namespace RTC
44
44
  * Create a UnresolvableAddressErrorCause.
45
45
  *
46
46
  * @remarks
47
- * `bufferLength` could be greater than the Error Cause real length.
47
+ * `bufferLength` could be greater than the error cause real length.
48
48
  */
49
49
  static UnresolvableAddressErrorCause* Factory(uint8_t* buffer, size_t bufferLength);
50
50
 
@@ -10,7 +10,7 @@ namespace RTC
10
10
  namespace SCTP
11
11
  {
12
12
  /**
13
- * SCTP User-Initiated Abort Error Cause (USER_INITIATED_ABORT) (12)
13
+ * SCTP User-Initiated Abort Error Cause (USER-INITIATED-ABORT) (12)
14
14
  *
15
15
  * @see RFC 9260.
16
16
  *
@@ -29,7 +29,7 @@ namespace RTC
29
29
 
30
30
  class UserInitiatedAbortErrorCause : public ErrorCause
31
31
  {
32
- // We need that Chunk calls protected and private methods in this class.
32
+ // We need that chunk calls protected and private methods in this class.
33
33
  friend class Chunk;
34
34
 
35
35
  public:
@@ -37,7 +37,7 @@ namespace RTC
37
37
  * Parse a UserInitiatedAbortErrorCause.
38
38
  *
39
39
  * @remarks
40
- * `bufferLength` may exceed the exact length of the Error Cause.
40
+ * `bufferLength` may exceed the exact length of the error cause.
41
41
  */
42
42
  static UserInitiatedAbortErrorCause* Parse(const uint8_t* buffer, size_t bufferLength);
43
43
 
@@ -45,7 +45,7 @@ namespace RTC
45
45
  * Create a UserInitiatedAbortErrorCause.
46
46
  *
47
47
  * @remarks
48
- * `bufferLength` could be greater than the Error Cause real length.
48
+ * `bufferLength` could be greater than the error cause real length.
49
49
  */
50
50
  static UserInitiatedAbortErrorCause* Factory(uint8_t* buffer, size_t bufferLength);
51
51
 
@@ -11,7 +11,7 @@ namespace RTC
11
11
  {
12
12
  /**
13
13
  * SCTP Add Incoming Streams Request Parameter
14
- * (ADD_INCOMING_STREAMS_REQUEST) (18).
14
+ * (ADD-INCOMING-STREAMS-REQUEST) (18).
15
15
  *
16
16
  * @see RFC 6525.
17
17
  *
@@ -31,7 +31,7 @@ namespace RTC
31
31
 
32
32
  class AddIncomingStreamsRequestParameter : public Parameter
33
33
  {
34
- // We need that Chunk calls protected and private methods in this class.
34
+ // We need that chunk calls protected and private methods in this class.
35
35
  friend class Chunk;
36
36
 
37
37
  public:
@@ -42,7 +42,7 @@ namespace RTC
42
42
  * Parse a AddIncomingStreamsRequestParameter.
43
43
  *
44
44
  * @remarks
45
- * `bufferLength` may exceed the exact length of the Parameter.
45
+ * `bufferLength` may exceed the exact length of the parameter.
46
46
  */
47
47
  static AddIncomingStreamsRequestParameter* Parse(const uint8_t* buffer, size_t bufferLength);
48
48
 
@@ -50,7 +50,7 @@ namespace RTC
50
50
  * Create a AddIncomingStreamsRequestParameter.
51
51
  *
52
52
  * @remarks
53
- * `bufferLength` could be greater than the Parameter real length.
53
+ * `bufferLength` could be greater than the parameter real length.
54
54
  */
55
55
  static AddIncomingStreamsRequestParameter* Factory(uint8_t* buffer, size_t bufferLength);
56
56
 
@@ -95,7 +95,7 @@ namespace RTC
95
95
  AddIncomingStreamsRequestParameter* SoftClone(const uint8_t* buffer) const final;
96
96
 
97
97
  /**
98
- * We don't really need to override this method since this Parameter
98
+ * We don't really need to override this method since this parameter
99
99
  * doesn't have variable-length value (despite the fixed header doesn't
100
100
  * have default length).
101
101
  */
@@ -11,7 +11,7 @@ namespace RTC
11
11
  {
12
12
  /**
13
13
  * SCTP Add Outgoing Streams Request Parameter
14
- * (ADD_OUTGOING_STREAMS_REQUEST) (17).
14
+ * (ADD-OUTGOING-STREAMS-REQUEST) (17).
15
15
  *
16
16
  * @see RFC 6525.
17
17
  *
@@ -31,7 +31,7 @@ namespace RTC
31
31
 
32
32
  class AddOutgoingStreamsRequestParameter : public Parameter
33
33
  {
34
- // We need that Chunk calls protected and private methods in this class.
34
+ // We need that chunk calls protected and private methods in this class.
35
35
  friend class Chunk;
36
36
 
37
37
  public:
@@ -42,7 +42,7 @@ namespace RTC
42
42
  * Parse a AddOutgoingStreamsRequestParameter.
43
43
  *
44
44
  * @remarks
45
- * `bufferLength` may exceed the exact length of the Parameter.
45
+ * `bufferLength` may exceed the exact length of the parameter.
46
46
  */
47
47
  static AddOutgoingStreamsRequestParameter* Parse(const uint8_t* buffer, size_t bufferLength);
48
48
 
@@ -50,7 +50,7 @@ namespace RTC
50
50
  * Create a AddOutgoingStreamsRequestParameter.
51
51
  *
52
52
  * @remarks
53
- * `bufferLength` could be greater than the Parameter real length.
53
+ * `bufferLength` could be greater than the parameter real length.
54
54
  */
55
55
  static AddOutgoingStreamsRequestParameter* Factory(uint8_t* buffer, size_t bufferLength);
56
56
 
@@ -95,7 +95,7 @@ namespace RTC
95
95
  AddOutgoingStreamsRequestParameter* SoftClone(const uint8_t* buffer) const final;
96
96
 
97
97
  /**
98
- * We don't really need to override this method since this Parameter
98
+ * We don't really need to override this method since this parameter
99
99
  * doesn't have variable-length value (despite the fixed header doesn't
100
100
  * have default length).
101
101
  */
@@ -10,7 +10,7 @@ namespace RTC
10
10
  namespace SCTP
11
11
  {
12
12
  /**
13
- * SCTP Cookie Preservative Parameter (COOKIE_PRESERVATIVE) (9).
13
+ * SCTP Cookie Preservative Parameter (COOKIE-PRESERVATIVE) (9).
14
14
  *
15
15
  * @see RFC 9260.
16
16
  *
@@ -28,7 +28,7 @@ namespace RTC
28
28
 
29
29
  class CookiePreservativeParameter : public Parameter
30
30
  {
31
- // We need that Chunk calls protected and private methods in this class.
31
+ // We need that chunk calls protected and private methods in this class.
32
32
  friend class Chunk;
33
33
 
34
34
  public:
@@ -39,7 +39,7 @@ namespace RTC
39
39
  * Parse a CookiePreservativeParameter.
40
40
  *
41
41
  * @remarks
42
- * `bufferLength` may exceed the exact length of the Parameter.
42
+ * `bufferLength` may exceed the exact length of the parameter.
43
43
  */
44
44
  static CookiePreservativeParameter* Parse(const uint8_t* buffer, size_t bufferLength);
45
45
 
@@ -47,7 +47,7 @@ namespace RTC
47
47
  * Create a CookiePreservativeParameter.
48
48
  *
49
49
  * @remarks
50
- * `bufferLength` could be greater than the Parameter real length.
50
+ * `bufferLength` could be greater than the parameter real length.
51
51
  */
52
52
  static CookiePreservativeParameter* Factory(uint8_t* buffer, size_t bufferLength);
53
53
 
@@ -85,7 +85,7 @@ namespace RTC
85
85
  CookiePreservativeParameter* SoftClone(const uint8_t* buffer) const final;
86
86
 
87
87
  /**
88
- * We don't really need to override this method since this Parameter
88
+ * We don't really need to override this method since this parameter
89
89
  * doesn't have variable-length value (despite the fixed header doesn't
90
90
  * have default length).
91
91
  */
@@ -9,7 +9,7 @@ namespace RTC
9
9
  namespace SCTP
10
10
  {
11
11
  /**
12
- * SCTP Forward-TSN-Supported Parameter (FORWARD_TSN_SUPPORTED) (49152).
12
+ * SCTP Forward-TSN-Supported Parameter (FORWARD-TSN-SUPPORTED) (49152).
13
13
  *
14
14
  * @see RFC 3758.
15
15
  *
@@ -25,7 +25,7 @@ namespace RTC
25
25
 
26
26
  class ForwardTsnSupportedParameter : public Parameter
27
27
  {
28
- // We need that Chunk calls protected and private methods in this class.
28
+ // We need that chunk calls protected and private methods in this class.
29
29
  friend class Chunk;
30
30
 
31
31
  public:
@@ -33,7 +33,7 @@ namespace RTC
33
33
  * Parse a ForwardTsnSupportedParameter.
34
34
  *
35
35
  * @remarks
36
- * `bufferLength` may exceed the exact length of the Parameter.
36
+ * `bufferLength` may exceed the exact length of the parameter.
37
37
  */
38
38
  static ForwardTsnSupportedParameter* Parse(const uint8_t* buffer, size_t bufferLength);
39
39
 
@@ -41,7 +41,7 @@ namespace RTC
41
41
  * Create a ForwardTsnSupportedParameter.
42
42
  *
43
43
  * @remarks
44
- * `bufferLength` could be greater than the Parameter real length.
44
+ * `bufferLength` could be greater than the parameter real length.
45
45
  */
46
46
  static ForwardTsnSupportedParameter* Factory(uint8_t* buffer, size_t bufferLength);
47
47
 
@@ -28,7 +28,7 @@ namespace RTC
28
28
 
29
29
  class HeartbeatInfoParameter : public Parameter
30
30
  {
31
- // We need that Chunk calls protected and private methods in this class.
31
+ // We need that chunk calls protected and private methods in this class.
32
32
  friend class Chunk;
33
33
 
34
34
  public:
@@ -36,7 +36,7 @@ namespace RTC
36
36
  * Parse a HeartbeatInfoParameter.
37
37
  *
38
38
  * @remarks
39
- * `bufferLength` may exceed the exact length of the Parameter.
39
+ * `bufferLength` may exceed the exact length of the parameter.
40
40
  */
41
41
  static HeartbeatInfoParameter* Parse(const uint8_t* buffer, size_t bufferLength);
42
42
 
@@ -44,7 +44,7 @@ namespace RTC
44
44
  * Create a HeartbeatInfoParameter.
45
45
  *
46
46
  * @remarks
47
- * `bufferLength` could be greater than the Parameter real length.
47
+ * `bufferLength` could be greater than the parameter real length.
48
48
  */
49
49
  static HeartbeatInfoParameter* Factory(uint8_t* buffer, size_t bufferLength);
50
50
 
@@ -27,7 +27,7 @@ namespace RTC
27
27
 
28
28
  class IPv4AddressParameter : public Parameter
29
29
  {
30
- // We need that Chunk calls protected and private methods in this class.
30
+ // We need that chunk calls protected and private methods in this class.
31
31
  friend class Chunk;
32
32
 
33
33
  public:
@@ -38,7 +38,7 @@ namespace RTC
38
38
  * Parse a IPv4AddressParameter.
39
39
  *
40
40
  * @remarks
41
- * `bufferLength` may exceed the exact length of the Parameter.
41
+ * `bufferLength` may exceed the exact length of the parameter.
42
42
  */
43
43
  static IPv4AddressParameter* Parse(const uint8_t* buffer, size_t bufferLength);
44
44
 
@@ -46,7 +46,7 @@ namespace RTC
46
46
  * Create a IPv4AddressParameter.
47
47
  *
48
48
  * @remarks
49
- * `bufferLength` could be greater than the Parameter real length.
49
+ * `bufferLength` could be greater than the parameter real length.
50
50
  */
51
51
  static IPv4AddressParameter* Factory(uint8_t* buffer, size_t bufferLength);
52
52
 
@@ -92,7 +92,7 @@ namespace RTC
92
92
  IPv4AddressParameter* SoftClone(const uint8_t* buffer) const final;
93
93
 
94
94
  /**
95
- * We don't really need to override this method since this Parameter
95
+ * We don't really need to override this method since this parameter
96
96
  * doesn't have variable-length value (despite the fixed header doesn't
97
97
  * have default length).
98
98
  */
@@ -9,7 +9,7 @@ namespace RTC
9
9
  namespace SCTP
10
10
  {
11
11
  /**
12
- * SCTP IPv6 Adress Parameter (IPV6_ADDRESS) (6).
12
+ * SCTP IPv6 Adress Parameter (IPV6-ADDRESS) (6).
13
13
  *
14
14
  * @see RFC 9260.
15
15
  *
@@ -30,7 +30,7 @@ namespace RTC
30
30
 
31
31
  class IPv6AddressParameter : public Parameter
32
32
  {
33
- // We need that Chunk calls protected and private methods in this class.
33
+ // We need that chunk calls protected and private methods in this class.
34
34
  friend class Chunk;
35
35
 
36
36
  public:
@@ -41,7 +41,7 @@ namespace RTC
41
41
  * Parse a IPv6AddressParameter.
42
42
  *
43
43
  * @remarks
44
- * `bufferLength` may exceed the exact length of the Parameter.
44
+ * `bufferLength` may exceed the exact length of the parameter.
45
45
  */
46
46
  static IPv6AddressParameter* Parse(const uint8_t* buffer, size_t bufferLength);
47
47
 
@@ -49,7 +49,7 @@ namespace RTC
49
49
  * Create a IPv6AddressParameter.
50
50
  *
51
51
  * @remarks
52
- * `bufferLength` could be greater than the Parameter real length.
52
+ * `bufferLength` could be greater than the parameter real length.
53
53
  */
54
54
  static IPv6AddressParameter* Factory(uint8_t* buffer, size_t bufferLength);
55
55
 
@@ -95,7 +95,7 @@ namespace RTC
95
95
  IPv6AddressParameter* SoftClone(const uint8_t* buffer) const final;
96
96
 
97
97
  /**
98
- * We don't really need to override this method since this Parameter
98
+ * We don't really need to override this method since this parameter
99
99
  * doesn't have variable-length value (despite the fixed header doesn't
100
100
  * have default length).
101
101
  */