Updated linphone + added missing callbacks in manager

This commit is contained in:
Sylvain Berfini 2014-09-11 12:17:29 +02:00
parent 2138f2ea53
commit c0c74aac79
3 changed files with 24 additions and 2 deletions

View file

@ -1424,7 +1424,7 @@ public class LinphoneManager implements LinphoneCoreListener {
}
@Override
public void fileTransferRecv(LinphoneCore lc, LinphoneChatMessage message,
LinphoneContent content, String buffer, int size) {
LinphoneContent content, byte[] buffer, int size) {
// TODO Auto-generated method stub
}

@ -1 +1 @@
Subproject commit 856418260aa7e20c9e46eaf7554877bb2be3d100
Subproject commit e9a376a014262fd3051326efbe89c6cc4d635f51

View file

@ -1,5 +1,6 @@
package org.linphone.test;
import java.nio.ByteBuffer;
import java.util.Timer;
import java.util.TimerTask;
@ -446,4 +447,25 @@ public class LinphoneTestManager implements LinphoneCoreListener {
// TODO Auto-generated method stub
}
@Override
public void fileTransferProgressIndication(LinphoneCore lc,
LinphoneChatMessage message, LinphoneContent content, int progress) {
// TODO Auto-generated method stub
}
@Override
public void fileTransferRecv(LinphoneCore lc, LinphoneChatMessage message,
LinphoneContent content, byte[] buffer, int size) {
// TODO Auto-generated method stub
}
@Override
public int fileTransferSend(LinphoneCore lc, LinphoneChatMessage message,
LinphoneContent content, ByteBuffer buffer, int size) {
// TODO Auto-generated method stub
return 0;
}
}