Commit c43ae68b authored by Simon Morlat's avatar Simon Morlat
Browse files

re-add new functions in LinphoneCore.java that was reverted by my fuck*** Eclipse when crashing.

parent 815348c2
Branches
Tags
No related merge requests found
Showing with 13 additions and 0 deletions
......@@ -1532,4 +1532,17 @@ public interface LinphoneCore {
* @param path a wav file to be played when such call failure happens.
*/
public void setCallErrorTone(Reason reason, String path);
/**
* Inform the core about the maximum transmission unit of the network.
* This is used for fragmenting video RTP packets to a size compatible with the network.
* @param mtu the MTU in bytes.
*/
public void setMtu(int mtu);
/**
* Returns the mtu value previously set by setMtu().
*
* @return the MTU in bytes.
*/
public int getMtu();
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment