Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
278f4802
Commit
278f4802
authored
Jun 26, 2014
by
Ghislain MARY
Browse files
Add mswebrtc to the liblinphone-tester project for Windows Phone 8.
parent
c230ea0b
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
151 additions
and
1 deletion
+151
-1
build/wp8/LibLinphoneTester-native/LibLinphoneTester-native.vcxproj
...LibLinphoneTester-native/LibLinphoneTester-native.vcxproj
+6
-0
build/wp8/LibLinphoneTester-wp8/LibLinphoneTester-wp8.sln
build/wp8/LibLinphoneTester-wp8/LibLinphoneTester-wp8.sln
+144
-0
tester/message_tester.c
tester/message_tester.c
+1
-1
No files found.
build/wp8/LibLinphoneTester-native/LibLinphoneTester-native.vcxproj
View file @
278f4802
...
...
@@ -114,6 +114,9 @@
<ClInclude
Include=
"linphone-tester-native.h"
/>
</ItemGroup>
<ItemGroup>
<ProjectReference
Include=
"..\..\..\..\bcg729\build\wp8\bcg729\bcg729.vcxproj"
>
<Project>
{1db09afe-fc9b-472e-a746-0e33f8ef8883}
</Project>
</ProjectReference>
<ProjectReference
Include=
"..\..\..\..\belle-sip\build\wp8\belle-sip\belle-sip.vcxproj"
>
<Project>
{4c225a82-800b-427b-ba7b-61686a9b347f}
</Project>
</ProjectReference>
...
...
@@ -132,6 +135,9 @@
<ProjectReference
Include=
"..\..\..\..\mswasapi\mswasapi\mswasapi.vcxproj"
>
<Project>
{d22bd217-d0f8-4274-9b3a-f3f35f46482c}
</Project>
</ProjectReference>
<ProjectReference
Include=
"..\..\..\..\mswebrtc\build\wp8\mswebrtc\mswebrtc.vcxproj"
>
<Project>
{b16b81a9-bef2-44c9-b603-1065183ae844}
</Project>
</ProjectReference>
<ProjectReference
Include=
"..\..\..\..\mswp8vid\mswp8vid\mswp8vid.vcxproj"
>
<Project>
{0565952a-ea62-46a2-8261-f5b4b490da42}
</Project>
</ProjectReference>
...
...
build/wp8/LibLinphoneTester-wp8/LibLinphoneTester-wp8.sln
View file @
278f4802
This diff is collapsed.
Click to expand it.
tester/message_tester.c
View file @
278f4802
...
...
@@ -121,13 +121,13 @@ void file_transfer_progress_indication(LinphoneCore *lc, LinphoneChatMessage *me
const
LinphoneAddress
*
from_address
=
linphone_chat_message_get_from
(
message
);
const
LinphoneAddress
*
to_address
=
linphone_chat_message_get_to
(
message
);
char
*
address
=
linphone_chat_message_is_outgoing
(
message
)
?
linphone_address_as_string
(
to_address
)
:
linphone_address_as_string
(
from_address
);
stats
*
counters
=
get_stats
(
lc
);
printf
(
" File transfer [%d%%] %s of type [%s/%s] %s [%s]
\n
"
,
(
int
)
progress
,(
linphone_chat_message_is_outgoing
(
message
)
?
"sent"
:
"received"
)
,
content
->
type
,
content
->
subtype
,(
linphone_chat_message_is_outgoing
(
message
)
?
"to"
:
"from"
)
,
address
);
stats
*
counters
=
get_stats
(
lc
);
counters
->
progress_of_LinphoneFileTransfer
=
progress
;
free
(
address
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment