Added missing callbacks

This commit is contained in:
Sylvain Berfini 2014-09-10 16:12:43 +02:00
parent 0ba3f6bc23
commit b7de55f1cd

View file

@ -27,6 +27,7 @@ import java.io.FileInputStream;
import java.io.FileOutputStream; import java.io.FileOutputStream;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.nio.ByteBuffer;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashSet; import java.util.HashSet;
import java.util.List; import java.util.List;
@ -1421,4 +1422,16 @@ public class LinphoneManager implements LinphoneCoreListener {
// TODO Auto-generated method stub // TODO Auto-generated method stub
} }
@Override
public void fileTransferRecv(LinphoneCore lc, LinphoneChatMessage message,
LinphoneContent content, String 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;
}
} }