12
12
#include " logcounter.hpp"
13
13
#include " peerconnection.hpp"
14
14
#include " sctptransport.hpp"
15
-
15
+ # include " utils.hpp "
16
16
#include " rtc/datachannel.hpp"
17
17
#include " rtc/track.hpp"
18
18
@@ -28,6 +28,9 @@ using std::chrono::milliseconds;
28
28
29
29
namespace rtc ::impl {
30
30
31
+ using utils::to_uint16;
32
+ using utils::to_uint32;
33
+
31
34
// Messages for the DataChannel establishment protocol (RFC 8832)
32
35
// See https://www.rfc-editor.org/rfc/rfc8832.html
33
36
@@ -254,10 +257,10 @@ void OutgoingDataChannel::open(shared_ptr<SctpTransport> transport) {
254
257
uint32_t reliabilityParameter;
255
258
if (mReliability ->maxPacketLifeTime ) {
256
259
channelType = CHANNEL_PARTIAL_RELIABLE_TIMED;
257
- reliabilityParameter = uint32_t (mReliability ->maxPacketLifeTime ->count ());
260
+ reliabilityParameter = to_uint32 (mReliability ->maxPacketLifeTime ->count ());
258
261
} else if (mReliability ->maxRetransmits ) {
259
262
channelType = CHANNEL_PARTIAL_RELIABLE_REXMIT;
260
- reliabilityParameter = uint32_t (*mReliability ->maxRetransmits );
263
+ reliabilityParameter = to_uint32 (*mReliability ->maxRetransmits );
261
264
}
262
265
// else {
263
266
// channelType = CHANNEL_RELIABLE;
@@ -268,12 +271,12 @@ void OutgoingDataChannel::open(shared_ptr<SctpTransport> transport) {
268
271
switch (mReliability ->typeDeprecated ) {
269
272
case Reliability::Type::Rexmit:
270
273
channelType = CHANNEL_PARTIAL_RELIABLE_REXMIT;
271
- reliabilityParameter = uint32_t (std::max (std::get<int >(mReliability ->rexmit ), 0 ));
274
+ reliabilityParameter = to_uint32 (std::max (std::get<int >(mReliability ->rexmit ), 0 ));
272
275
break ;
273
276
274
277
case Reliability::Type::Timed:
275
278
channelType = CHANNEL_PARTIAL_RELIABLE_TIMED;
276
- reliabilityParameter = uint32_t (std::get<milliseconds>(mReliability ->rexmit ).count ());
279
+ reliabilityParameter = to_uint32 (std::get<milliseconds>(mReliability ->rexmit ).count ());
277
280
break ;
278
281
279
282
default :
@@ -292,8 +295,8 @@ void OutgoingDataChannel::open(shared_ptr<SctpTransport> transport) {
292
295
open .channelType = channelType;
293
296
open .priority = htons (0 );
294
297
open .reliabilityParameter = htonl (reliabilityParameter);
295
- open .labelLength = htons (uint16_t (mLabel .size ()));
296
- open .protocolLength = htons (uint16_t (mProtocol .size ()));
298
+ open .labelLength = htons (to_uint16 (mLabel .size ()));
299
+ open .protocolLength = htons (to_uint16 (mProtocol .size ()));
297
300
298
301
auto end = reinterpret_cast <char *>(buffer.data () + sizeof (OpenMessage));
299
302
std::copy (mLabel .begin (), mLabel .end (), end);
0 commit comments