Exemplo n.º 1
0
 /**
  * Redirects the call when remotly requested. Callback function called when arriving a 3xx (call
  * redirection)
  */
 public void onCallRedirection(
     Call call,
     String reason,
     Vector contact_list,
     Message resp) { // printLog("REDIRECTION ("+reason+")");
   call.call((String) contact_list.elementAt(0));
 }
Exemplo n.º 2
0
 /** Starts a new call, inviting a remote user (<i>callee</i>) */
 public void call(String callee, String sdp, String icsi) { // modified by mandrajg
   call(callee, null, null, sdp, icsi);
 }
Exemplo n.º 3
0
 /** Starts a new call, inviting a remote user (<i>callee</i>) */
 public void call(String callee) {
   call(callee, null, null, null, null); // modified by mandrajg
 }