mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
fix compilation on windows
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@282 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
This commit is contained in:
parent
b3edee9bd4
commit
4c904a78a2
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ ice_sendtest( struct CandidatePair *remote_candidate, Socket myFd, StunAddress4
|
|||
req.hasMessageIntegrity=TRUE;
|
||||
|
||||
req.hasPriority = TRUE;
|
||||
req.priority.priority = pow(2,24)*(110) + pow(2,8)*(65535) + pow(2,0)*(256 - remote_candidate->remote_candidate.component_id);
|
||||
req.priority.priority = (UInt32)(pow((double)2,(double)24)*(110) + pow((double)2,(double)8)*(65535) + pow((double)2,(double)0)*(256 - remote_candidate->remote_candidate.component_id));
|
||||
|
||||
/* TODO: put this parameter only for the candidate selected */
|
||||
if (remote_candidate->connectivity_check==VALID)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue