]> sjero.net Git - linphone/blobdiff - console/commands.c
Aac-eld add missing header according to RFC3640 3.3.6
[linphone] / console / commands.c
index 73e1b2b5425a49cacb2143b3b8c20701e26afbeb..67b2446f45ae806fa1ae969c7a172062aa62c27e 100644 (file)
 #include <ctype.h>
 #include <linphonecore.h>
 #include "linphonec.h"
-#include "private.h"
 #include "lpconfig.h"
 
 #ifndef WIN32
 #include <sys/wait.h>
 #endif
 
+#define AUDIO 0
+#define VIDEO 1
+
 /***************************************************************************
  *
  *  Forward declarations 
@@ -53,13 +55,15 @@ extern char *lpc_strip_blanks(char *input);
 static int lpc_cmd_help(LinphoneCore *, char *);
 static int lpc_cmd_proxy(LinphoneCore *, char *);
 static int lpc_cmd_call(LinphoneCore *, char *);
+static int lpc_cmd_calls(LinphoneCore *, char *);
 static int lpc_cmd_chat(LinphoneCore *, char *);
 static int lpc_cmd_answer(LinphoneCore *, char *);
 static int lpc_cmd_autoanswer(LinphoneCore *, char *);
 static int lpc_cmd_terminate(LinphoneCore *, char *);
+static int lpc_cmd_redirect(LinphoneCore *, char *);
 static int lpc_cmd_call_logs(LinphoneCore *, char *);
 static int lpc_cmd_ipv6(LinphoneCore *, char *);
-static int lpc_cmd_refer(LinphoneCore *, char *);
+static int lpc_cmd_transfer(LinphoneCore *, char *);
 static int lpc_cmd_quit(LinphoneCore *, char *);
 static int lpc_cmd_nat(LinphoneCore *, char *);
 static int lpc_cmd_stun(LinphoneCore *, char *);
@@ -75,11 +79,32 @@ static int lpc_cmd_unregister(LinphoneCore *, char *);
 static int lpc_cmd_duration(LinphoneCore *lc, char *args);
 static int lpc_cmd_status(LinphoneCore *lc, char *args);
 static int lpc_cmd_ports(LinphoneCore *lc, char *args);
+static int lpc_cmd_param(LinphoneCore *lc, char *args);
 static int lpc_cmd_speak(LinphoneCore *lc, char *args);
-static int lpc_cmd_codec(LinphoneCore *lc, char *args);
+static int lpc_cmd_acodec(LinphoneCore *lc, char *args);
+static int lpc_cmd_vcodec(LinphoneCore *lc, char *args);
+static int lpc_cmd_codec(int type, LinphoneCore *lc, char *args);
 static int lpc_cmd_echocancellation(LinphoneCore *lc, char *args);
+static int lpc_cmd_echolimiter(LinphoneCore *lc, char *args);
 static int lpc_cmd_pause(LinphoneCore *lc, char *args);
 static int lpc_cmd_resume(LinphoneCore *lc, char *args);
+static int lpc_cmd_mute_mic(LinphoneCore *lc, char *args);
+static int lpc_cmd_unmute_mic(LinphoneCore *lc, char *args);
+static int lpc_cmd_playback_gain(LinphoneCore *lc, char *args);
+static int lpc_cmd_rtp_no_xmit_on_audio_mute(LinphoneCore *lc, char *args);
+#ifdef VIDEO_ENABLED
+static int lpc_cmd_camera(LinphoneCore *lc, char *args);
+static int lpc_cmd_video_window(LinphoneCore *lc, char *args);
+static int lpc_cmd_preview_window(LinphoneCore *lc, char *args);
+static int lpc_cmd_snapshot(LinphoneCore *lc, char *args);
+static int lpc_cmd_vfureq(LinphoneCore *lc, char *arg);
+#endif
+static int lpc_cmd_states(LinphoneCore *lc, char *args);
+static int lpc_cmd_identify(LinphoneCore *lc, char *args);
+static int lpc_cmd_ringback(LinphoneCore *lc, char *args);
+static int lpc_cmd_conference(LinphoneCore *lc, char *args);
+static int lpc_cmd_zrtp_verified(LinphoneCore *lc, char *args);
+static int lpc_cmd_zrtp_unverified(LinphoneCore *lc, char *args);
 
 /* Command handler helpers */
 static void linphonec_proxy_add(LinphoneCore *lc);
@@ -97,18 +122,18 @@ static int linphonec_friend_add(LinphoneCore *lc, const char *name, const char *
 #endif
 static int linphonec_friend_delete(LinphoneCore *lc, int num);
 static int linphonec_friend_delete(LinphoneCore *lc, int num);
-static void linphonec_codec_list(LinphoneCore *lc);
-static void linphonec_codec_enable(LinphoneCore *lc, int index);
-static void linphonec_codec_disable(LinphoneCore *lc, int index);
-
-
+static void linphonec_codec_list(int type, LinphoneCore *lc);
+static void linphonec_codec_enable(int type, LinphoneCore *lc, int index);
+static void linphonec_codec_disable(int type, LinphoneCore *lc, int index);
+static void lpc_display_call_states(LinphoneCore *lc);
 
 /* Command table management */
 static LPC_COMMAND *lpc_find_command(const char *name);
 
 void linphonec_out(const char *fmt,...);
 
-
+VideoParams lpc_video_params={-1,-1,-1,-1,0,TRUE};
+VideoParams lpc_preview_params={-1,-1,-1,-1,0,TRUE};
 
 /***************************************************************************
  *
@@ -119,11 +144,23 @@ void linphonec_out(const char *fmt,...);
 /*
  * Commands table.
  */
-LPC_COMMAND commands[] = {
-       { "help", lpc_cmd_help, "Print commands help", NULL },
-       { "call", lpc_cmd_call, "Call a SIP uri",
-               "'call <sip-url>' \t: initiate a call to the specified destination.\n"
-               "'call show' \t: show all the current calls status.\n"
+static LPC_COMMAND commands[] = {
+       { "help", lpc_cmd_help, "Print commands help.",
+               "'help <command>'\t: displays specific help for command.\n"
+               "'help advanced'\t: shows advanced commands.\n"
+       },
+       { "call", lpc_cmd_call, "Call a SIP uri or number",
+#ifdef VIDEO_ENABLED
+               "'call <sip-url or number>  [options]' \t: initiate a call to the specified destination.\n"
+               "Options can be:\n"
+               "--audio-only : initiate the call without video.\n"
+               "--early-media : sends audio and video stream immediately when remote proposes early media.\n"
+#else
+               "'call <sip-url or number>' \t: initiate a call to the specified destination.\n"
+#endif
+               },
+       { "calls", lpc_cmd_calls, "Show all the current calls with their id and status.",
+               NULL
                },
        { "chat", lpc_cmd_chat, "Chat with a SIP uri",
                "'chat <sip-url> \"message\"' "
@@ -131,17 +168,45 @@ LPC_COMMAND commands[] = {
                },
        { "terminate", lpc_cmd_terminate, "Terminate a call",
                "'terminate' : Terminate the current call\n"
-               "'terminate <sip:XXX@XXX.XXX.XXX.XXX>' : Terminate the call with remote address\n"
+               "'terminate <call id>' : Terminate the call with supplied id\n"
                "'terminate <all>' : Terminate all the current calls\n"
                },
        { "answer", lpc_cmd_answer, "Answer a call",
                "'answer' : Answer the current incoming call\n"
-               "'answer <sip:XXX@XXX.XXX.XXX.XXX>' : Answer the call with remote address\n"
+               "'answer <call id>' : Answer the call with given id\n"
+       },
+       { "pause", lpc_cmd_pause, "pause a call",
+               "'pause' : pause the current call\n"},
+       { "resume", lpc_cmd_resume, "resume a call",
+               "'resume' : resume the unique call\n"
+               "'resume <call id>' : hold off the call with given id\n"},
+       { "transfer", lpc_cmd_transfer,
+               "Transfer a call to a specified destination.",
+               "'transfer <sip-uri>' : transfers the current active call to the destination sip-uri\n"
+               "'transfer <call id> <sip-uri>': transfers the call with 'id' to the destination sip-uri\n"
+               "'transfer <call id1> --to-call <call id2>': transfers the call with 'id1' to the destination of call 'id2' (attended transfer)\n"
+       },
+       { "conference", lpc_cmd_conference, "Create and manage an audio conference.",
+               "'conference add <call id> : join the call with id 'call id' into the audio conference."
+               "'conference rm <call id> : remove the call with id 'call id' from the audio conference."
        },
+       { "mute", lpc_cmd_mute_mic, 
+         "Mute microphone and suspend voice transmission."},
+#ifdef VIDEO_ENABLED
+       { "camera", lpc_cmd_camera, "Send camera output for current call.",
+               "'camera on'\t: allow sending of local camera video to remote end.\n"
+               "'camera off'\t: disable sending of local camera's video to remote end.\n"},
+#endif
+       { "unmute", lpc_cmd_unmute_mic, 
+                 "Unmute microphone and resume voice transmission."},
+       { "playbackgain", lpc_cmd_playback_gain, 
+                 "Adjust playback gain."},
+       { "duration", lpc_cmd_duration, "Print duration in seconds of the last call.", NULL },
+       
        { "autoanswer", lpc_cmd_autoanswer, "Show/set auto-answer mode",
                "'autoanswer'       \t: show current autoanswer mode\n"
                "'autoanswer enable'\t: enable autoanswer mode\n"
-               "'autoanswer disable'\t: disable autoanswer mode \n"},
+               "'autoanswer disable'\t: disable autoanswer mode��\n"},
        { "proxy", lpc_cmd_proxy, "Manage proxies",
                "'proxy list' : list all proxy setups.\n"
                "'proxy add' : add a new proxy setup.\n"
@@ -161,19 +226,11 @@ LPC_COMMAND commands[] = {
                "'webcam list' : list all known devices.\n"
                "'webcam use <index>' : select a video device.\n"
        },
-       { "staticpic", lpc_cmd_staticpic, "Manage static pictures when nowebcam",
-               "'staticpic set' : Set path to picture that should be used.\n"
-       },
        { "ipv6", lpc_cmd_ipv6, "Use IPV6",
                "'ipv6 status' : show ipv6 usage status.\n"
                "'ipv6 enable' : enable the use of the ipv6 network.\n"
                "'ipv6 disable' : do not use ipv6 network."
        },
-       { "refer", lpc_cmd_refer,
-               "Refer the current call to the specified destination.",
-               "'refer <sip-url>' or 'r <sip-url>' "
-               ": refer the current call to the specified destination."
-       },
        { "nat", lpc_cmd_nat, "Set nat address",
                "'nat'        : show nat settings.\n"
                "'nat <addr>' : set nat address.\n"
@@ -187,6 +244,8 @@ LPC_COMMAND commands[] = {
                "'firewall none'   : use direct connection.\n"
                "'firewall nat'    : use nat address given with the 'nat' command.\n"
                "'firewall stun'   : use stun server given with the 'stun' command.\n"
+               "'firewall ice'    : use ice.\n"
+               "'firewall upnp'   : use uPnP IGD.\n"
        },
        { "call-logs", lpc_cmd_call_logs, "Calls history", NULL },
        { "friend", lpc_cmd_friend, "Manage friends",
@@ -197,8 +256,10 @@ LPC_COMMAND commands[] = {
            "                               there.  Don't use '<' '>' around <addr>.\n"
                "'friend delete <index>'      : remove friend, 'all' removes all\n"
        },
-       { "play", lpc_cmd_play, "play from a wav file",
-               "This feature is available only in file mode (see 'help soundcard')\n"
+       { "play", lpc_cmd_play, "play a wav file",
+               "This command has two roles:\n"
+               "Plays a file instead of capturing from soundcard - only available in file mode (see 'help soundcard')\n"
+               "Specifies a wav file to be played to play music to far end when putting it on hold (pause)\n"
                "'play <wav file>'    : play a wav file."
        },
        { "record", lpc_cmd_record, "record to a wav file",
@@ -206,9 +267,60 @@ LPC_COMMAND commands[] = {
                "'record <wav file>'    : record into wav file."
        },
        { "quit", lpc_cmd_quit, "Exit linphonec", NULL },
+       { (char *)NULL, (lpc_cmd_handler)NULL, (char *)NULL, (char *)NULL }
+};
+
+
+static LPC_COMMAND advanced_commands[] = {
+        { "codec", lpc_cmd_acodec, "Audio codec configuration",
+            "'codec list' : list audio codecs\n"
+            "'codec enable <index>' : enable available audio codec\n"
+            "'codec disable <index>' : disable audio codec" },
+    { "vcodec", lpc_cmd_vcodec, "Video codec configuration",
+            "'vcodec list' : list video codecs\n"
+            "'vcodec enable <index>' : enable available video codec\n"
+            "'vcodec disable <index>' : disable video codec" },
+       { "ec", lpc_cmd_echocancellation, "Echo cancellation",
+           "'ec on [<delay>] [<tail>] [<framesize>]' : turn EC on with given delay, tail length and framesize\n"
+           "'ec off' : turn echo cancellation (EC) off\n"
+           "'ec show' : show EC status" },
+       { "el", lpc_cmd_echolimiter, "Echo limiter",
+           "'el on turns on echo limiter (automatic half duplex, for cases where echo canceller cannot work)\n"
+           "'el off' : turn echo limiter off\n"
+           "'el show' : show echo limiter status" },
+       { "nortp-on-audio-mute", lpc_cmd_rtp_no_xmit_on_audio_mute,
+                 "Set the rtp_no_xmit_on_audio_mute configuration parameter",
+                 "   If set to 1 then rtp transmission will be muted when\n"
+                 "   audio is muted , otherwise rtp is always sent."}, 
+#ifdef VIDEO_ENABLED
+       { "vwindow", lpc_cmd_video_window, "Control video display window",
+               "'vwindow show': shows video window\n"
+               "'vwindow hide': hides video window\n"
+               "'vwindow pos <x> <y>': Moves video window to x,y pixel coordinates\n"
+               "'vwindow size <width> <height>': Resizes video window\n"
+               "'vwindow id <window id>': embeds video display into supplied window id."
+       },
+       { "pwindow", lpc_cmd_preview_window, "Control local camera video display (preview window)",
+               "'pwindow show': shows the local camera video display\n"
+               "'pwindow hide': hides the local camera video display\n"
+               "'pwindow pos <x> <y>': Moves preview window to x,y pixel coordinates\n"
+               "'pwindow size <width> <height>': Resizes preview window\n"
+               "'pwindow id <window id>': embeds preview display into supplied window id.\n"
+               "'pwindow integrated': integrate preview display within the video window of current call.\n"
+               "'pwindow standalone': use standalone window for preview display."
+       },
+       { "snapshot", lpc_cmd_snapshot, "Take a snapshot of currently received video stream",
+               "'snapshot <file path>': take a snapshot and records it in jpeg format into the supplied path\n"
+       },
+       { "vfureq", lpc_cmd_vfureq, "Request the other side to send VFU for the current call"},
+#endif
+       { "states", lpc_cmd_states, "Show internal states of liblinphone, registrations and calls, according to linphonecore.h definitions",
+               "'states global': shows global state of liblinphone \n"
+               "'states calls': shows state of calls\n"
+               "'states proxies': shows state of proxy configurations"
+       },
        { "register", lpc_cmd_register, "Register in one line to a proxy" , "register <sip identity> <sip proxy> <password>"},
        { "unregister", lpc_cmd_unregister, "Unregister from default proxy", NULL       },
-       { "duration", lpc_cmd_duration, "Print duration in seconds of the last call.", NULL },
        { "status", lpc_cmd_status, "Print various status information", 
                        "'status register'  \t: print status concerning registration\n"
                        "'status autoanswer'\t: tell whether autoanswer mode is enabled\n"
@@ -216,27 +328,41 @@ LPC_COMMAND commands[] = {
        { "ports", lpc_cmd_ports, "Network ports configuration", 
                        "'ports'  \t: prints current used ports.\n"
                        "'ports sip <port number>'\t: Sets the sip port.\n" },
+       { "param", lpc_cmd_param, "parameter set or read as normally given in .linphonerc",
+                       "'param <section> <parameter> [<value>]'  \t: reads [sets] given parameter.\n"
+                       "NOTES: - changes may become effective after (re)establishing a sip connection.\n"
+                       "       - upon exit, .linphonerc will reflect the updated state.\n" },
        { "speak", lpc_cmd_speak, "Speak a sentence using espeak TTS engine",
                        "This feature is available only in file mode. (see 'help soundcard')\n"
                        "'speak <voice name> <sentence>'        : speak a text using the specified espeak voice.\n"
                        "Example for english voice: 'speak default Hello my friend !'"
        },
-    { "codec", lpc_cmd_codec, "Codec configuration",
-            "'codec list' : list codecs\n"  
-            "'codec enable <index>' : enable available codec\n"  
-            "'codec disable <index>' : disable codecs" }, 
-    { "ec", lpc_cmd_echocancellation, "Echo cancellation",
-            "'ec on [<delay>] [<tail>] [<framesize>]' : turn EC on with given delay, tail length and framesize\n"
-            "'ec off' : turn echo cancellation (EC) off\n"
-            "'ec show' : show EC status" },
-    { "pause", lpc_cmd_pause, "pause a call",
-               "'pause' : pause the current call\n"},
-    { "resume", lpc_cmd_resume, "resume a call",
-               "'resume' : resume the unique call\n"
-               "'resume <sip:XXX@XXX.XXX.XXX.XXX>' : hold off the call with cid <cid>\n"},
-    { (char *)NULL, (lpc_cmd_handler)NULL, (char *)NULL, (char *)NULL }
+       { "staticpic", lpc_cmd_staticpic, "Manage static pictures when nowebcam",
+               "'staticpic set' : Set path to picture that should be used.\n"
+               "'staticpic fps' : Get/set frames per seconds for picture emission.\n"
+       },
+       { "identify", lpc_cmd_identify, "Returns the user-agent string of far end",
+               "'identify' \t: returns remote user-agent string for current call.\n"
+               "'identify <id>' \t: returns remote user-agent string for call with supplied id.\n"
+       },
+       { "ringback", lpc_cmd_ringback, "Specifies a ringback tone to be played to remote end during incoming calls",
+               "'ringback <path of mono .wav file>'\t: Specifies a ringback tone to be played to remote end during incoming calls\n"
+               "'ringback disable'\t: Disable playing of ringback tone to callers\n"
+       },
+       { "redirect", lpc_cmd_redirect, "Redirect an incoming call",
+               "'redirect <redirect-uri>'\t: Redirect all pending incoming calls to the <redirect-uri>\n"
+       },
+       { "zrtp-set-verified", lpc_cmd_zrtp_verified,"Set ZRTP SAS verified.",
+               "'Set ZRTP SAS verified'\n"
+       },
+       { "zrtp-set-unverified", lpc_cmd_zrtp_unverified,"Set ZRTP SAS not verified.",
+               "'Set ZRTP SAS not verified'\n"
+       },
+       {       NULL,NULL,NULL,NULL}
 };
 
+
+
 /***************************************************************************
  *
  *  Public interface 
@@ -272,6 +398,7 @@ linphonec_parse_command_line(LinphoneCore *lc, char *cl)
                while ( isdigit(*cl) || *cl == '#' || *cl == '*' )
                {
                        linphone_core_send_dtmf(lc, *cl);
+                       linphone_core_play_dtmf (lc,*cl,100);
                        ms_sleep(1); // be nice
                        ++cl;
                }
@@ -306,29 +433,43 @@ linphonec_parse_command_line(LinphoneCore *lc, char *cl)
 char *
 linphonec_command_generator(const char *text, int state)
 {
-       static int index, len;
+       static int index, len, adv;
        char *name;
 
        if ( ! state )
        {
                index=0;
+               adv=0;
                len=strlen(text);
        }
-
        /*
         * Return the next name which partially matches
         * from the commands list
         */
-       while ((name=commands[index].name))
-       {
-               ++index; /* so next call get next command */
-
-               if (strncmp(name, text, len) == 0)
+       if (adv==0){
+               while ((name=commands[index].name))
                {
-                       return ortp_strdup(name);
+                       ++index; /* so next call get next command */
+
+                       if (strncmp(name, text, len) == 0)
+                       {
+                               return ortp_strdup(name);
+                       }
                }
+               adv=1;
+               index=0;
        }
+       if (adv==1){
+               while ((name=advanced_commands[index].name))
+               {
+                       ++index; /* so next call get next command */
 
+                       if (strncmp(name, text, len) == 0)
+                       {
+                               return ortp_strdup(name);
+                       }
+               }
+       }
        return NULL;
 }
 
@@ -358,11 +499,29 @@ lpc_cmd_help(LinphoneCore *lc, char *arg)
                }
                
                linphonec_out("---------------------------\n");
-               linphonec_out("Type 'help <command>' for more details.\n");
+               linphonec_out("Type 'help <command>' for more details or\n");
+               linphonec_out("     'help advanced' to list additional commands.\n");
 
                return 1;
        }
 
+       if (strcmp(arg,"advanced")==0){
+               linphonec_out("Advanced commands are:\n");
+               linphonec_out("---------------------------\n");
+               i=0;
+               while (advanced_commands[i].help)
+               {
+                       linphonec_out("%10.10s\t%s\n", advanced_commands[i].name,
+                               advanced_commands[i].help);
+                       i++;
+               }
+               
+               linphonec_out("---------------------------\n");
+               linphonec_out("Type 'help <command>' for more details.\n");
+
+               return 1;
+       }
+       
        cmd=lpc_find_command(arg);
        if ( !cmd )
        {
@@ -378,6 +537,7 @@ lpc_cmd_help(LinphoneCore *lc, char *arg)
 static char callee_name[256]={0};
 static char caller_name[256]={0};
 
+
 static int
 lpc_cmd_call(LinphoneCore *lc, char *args)
 {
@@ -385,35 +545,26 @@ lpc_cmd_call(LinphoneCore *lc, char *args)
        {
                return 0;
        }
-       if(!strcmp(args,"show"))
-       {
-               MSList *calls = linphone_core_get_calls(lc);
-               if(calls)
-               {
-                       MSList *p_calls = calls;
-                       linphonec_out("<remote>\t\t\t\t<status>\r\n");
-                       while(p_calls != NULL)                  
-                       {
-                               linphonec_out("%s\t\t\t%s\r\n",
-                                               linphone_call_get_remote_address_as_string(p_calls->data),
-                                               (((LinphoneCall *)p_calls->data)==linphone_core_get_current_call(lc))?"yes":"no");
-                               p_calls = p_calls->next;
-                       }
-                       ms_list_free(calls);
-               }
-               else
-               {
-                       linphonec_out("No active call.\n");
-               }
-       }
-       else
        {
+               LinphoneCall *call;
+               LinphoneCallParams *cp=linphone_core_create_default_call_parameters (lc);
+               char *opt1,*opt2;
                if ( linphone_core_in_call(lc) )
                {
                        linphonec_out("Terminate or hold on the current call first.\n");
                        return 1;
                }
-               if ( NULL == linphone_core_invite(lc, args) )
+               opt1=strstr(args,"--audio-only");
+               opt2=strstr(args,"--early-media");
+               if (opt1){
+                       opt1[0]='\0';
+                       linphone_call_params_enable_video (cp,FALSE);
+               }
+               if (opt2){
+                       opt2[0]='\0';
+                       linphone_call_params_enable_early_media_sending(cp,TRUE);
+               }
+               if ( NULL == (call=linphone_core_invite_with_params(lc, args,cp)) )
                {
                        linphonec_out("Error from linphone_core_invite.\n");
                }
@@ -421,10 +572,25 @@ lpc_cmd_call(LinphoneCore *lc, char *args)
                {
                        snprintf(callee_name,sizeof(callee_name),"%s",args);
                }
+               linphone_call_params_destroy(cp);
        }
        return 1;
 }
 
+static int 
+lpc_cmd_calls(LinphoneCore *lc, char *args){
+       const MSList *calls = linphone_core_get_calls(lc);
+       if(calls)
+       {
+               lpc_display_call_states(lc);
+       }else
+       {
+               linphonec_out("No active call.\n");
+       }
+       return 1;
+}
+
+
 static int
 lpc_cmd_chat(LinphoneCore *lc, char *args)
 {
@@ -467,12 +633,47 @@ void linphonec_set_caller(const char *caller){
 }
 
 static int
-lpc_cmd_refer(LinphoneCore *lc, char *args)
+lpc_cmd_transfer(LinphoneCore *lc, char *args)
 {
-       if (args)
-               linphone_core_refer(lc, linphone_core_get_current_call(lc), args);
-       else{
-               linphonec_out("refer needs an argument\n");
+       if (args){
+               LinphoneCall *call;
+               LinphoneCall *call2;
+               const char *refer_to=NULL;
+               char arg1[256]={0};
+               char arg2[266]={0};
+               long id2=0;
+               int n=sscanf(args,"%255s %265s %li",arg1,arg2,&id2);
+               if (n==1 || isalpha(*arg1)){
+                       call=linphone_core_get_current_call(lc);
+                       if (call==NULL && ms_list_size(linphone_core_get_calls(lc))==1){
+                               call=(LinphoneCall*)linphone_core_get_calls(lc)->data;
+                       }
+                       refer_to=args;
+                       if (call==NULL){
+                               linphonec_out("No active call, please specify a call id among the ones listed by 'calls' command.\n");
+                               return 0;
+                       }
+                       linphone_core_transfer_call(lc, call, refer_to);
+               }else if (n==2){
+                       long id=atoi(arg1);
+                       refer_to=args+strlen(arg1)+1;
+                       call=linphonec_get_call(id);
+                       if (call==NULL) return 0;
+                       linphone_core_transfer_call(lc, call, refer_to);
+               }else if (n==3){
+                       long id=atoi(arg1);
+                       call=linphonec_get_call(id);
+                       call2=linphonec_get_call(id2);
+                       if (call==NULL || call2==NULL) return 0;
+                       if (strcmp(arg2,"--to-call")!=0){
+                               return 0;
+                       }
+                       linphonec_out("Performing attended transfer of call %i to call %i",id,id2);
+                       linphone_core_transfer_call_to_another (lc,call,call2);
+               }else return 0;
+       }else{
+               linphonec_out("Transfer command requires at least one argument\n");
+               return 0;
        }
        return 1;
 }
@@ -480,96 +681,88 @@ lpc_cmd_refer(LinphoneCore *lc, char *args)
 static int
 lpc_cmd_terminate(LinphoneCore *lc, char *args)
 {
-       char *arg1 = args;
-       char *arg2 = NULL;
-       char *ptr = args;
-
+       if (linphone_core_get_calls(lc)==NULL){
+               linphonec_out("No active calls\n");
+               return 1;
+       }
        if (!args)
        {
-               if(linphone_core_in_call(lc))
-               {
-                       if ( -1 == linphone_core_terminate_call(lc, linphone_core_get_current_call(lc)) )
-                       {
-                               linphonec_out("Could not stop the active call.\n");
-                       }
-               }
-               else
-               {
-                       linphonec_out("No active call.\n");
+               if ( -1 == linphone_core_terminate_call(lc, NULL) ){
+                       linphonec_out("Could not stop the active call.\n");
                }
                return 1;
        }
        
-       /* Isolate first and second arg */
-       while(*ptr && !isspace(*ptr)) ++ptr;
-       if ( *ptr )
-       {
-               *ptr='\0';
-               arg2=ptr+1;
-               while(*arg2 && isspace(*arg2)) ++arg2;
-       }
-       if (arg1 != 0)
-       {
-               if(strcmp(arg1,"all")==0)
-               {
-                       linphonec_out("We are going to stop all the calls.\n");
-                       return (linphone_core_terminate_all_calls(lc)==0)?1:0;
-               }
-               else
-               {
-                       char the_remote_address[255];
-                       int n = sscanf(arg1, "%s", the_remote_address);
-                       if (n == 1)
-                       {
-                               if ( -1 == linphone_core_terminate_call(lc,linphone_core_get_call_by_remote_address(lc,the_remote_address)))
-                               {
-                                       linphonec_out("Cannot stop the call with %s.\n",the_remote_address);
-                               }
-                               return 1;
+       if(strcmp(args,"all")==0){
+               linphonec_out("We are going to stop all the calls.\n");
+               linphone_core_terminate_all_calls(lc);
+               return 1;
+       }else{
+               /*the argument is a linphonec call id */
+               long id=atoi(args);
+               LinphoneCall *call=linphonec_get_call(id);
+               if (call){
+                       if (linphone_core_terminate_call(lc,call)==-1){
+                               linphonec_out("Could not stop the call with id %li\n",id);
                        }
-               }
+               }else return 0;
+               return 1;
        }
        return 0;
        
 }
 
 static int
-lpc_cmd_answer(LinphoneCore *lc, char *args)
-{
-       char *arg1 = args;
-       char *arg2 = NULL;
-       char *ptr = args;
-
-       if (!args)
-       {
-               //if just one call is present answer the only one in passing NULL to the linphone_core_accept_call ...
-               if ( -1 == linphone_core_accept_call(lc, NULL) )
-               {
-                       linphonec_out("No incoming call.\n");
-               }
+lpc_cmd_redirect(LinphoneCore *lc, char *args){
+       const MSList *elem;
+       int didit=0;
+       if (!args) return 0;
+       if ((elem=linphone_core_get_calls(lc))==NULL){
+               linphonec_out("No active calls.\n");
                return 1;
        }
-
-       // Isolate first and second arg
-       while(*ptr && !isspace(*ptr)) ++ptr;
-       if ( *ptr )
-       {
-               *ptr='\0';
-               arg2=ptr+1;
-               while(*arg2 && isspace(*arg2)) ++arg2;
+       while(elem!=NULL){
+               LinphoneCall *call=(LinphoneCall*)elem->data;
+               if (linphone_call_get_state(call)==LinphoneCallIncomingReceived){
+                       linphone_core_redirect_call(lc,call,args);
+                       didit=1;
+                       /*as the redirection closes the call, we need to re-check the call list that is invalidated.*/
+                       elem=linphone_core_get_calls(lc);
+               }else elem=elem->next;
        }
-       if (arg1 != 0)
+       if (didit==0){
+               linphonec_out("There is no pending incoming call to redirect.");
+       }
+       return 1;
+}
+
+static int
+lpc_cmd_answer(LinphoneCore *lc, char *args){
+       if (!args)
        {
-               char the_remote_address[256];
-               int n = sscanf(arg1, "%s", the_remote_address);
-               if (n == 1)
-               {
-                       if ( -1 == linphone_core_accept_call(lc, linphone_core_get_call_by_remote_address(lc,the_remote_address)) )
+               int nb=ms_list_size(linphone_core_get_calls(lc));
+               if (nb==1){
+                       //if just one call is present answer the only one in passing NULL to the linphone_core_accept_call ...
+                       if ( -1 == linphone_core_accept_call(lc, NULL) )
                        {
-                               linphonec_out("Cannot answer the call from %s.\n",the_remote_address);
+                               linphonec_out("Fail to accept incoming call\n");
                        }
-                       return 1;
+               }else if (nb==0){
+                       linphonec_out("There are no calls to answer.\n");
+               }else{
+                       linphonec_out("Multiple calls in progress, please specify call id.\n");
+                       return 0;
                }
+               return 1;
+       }else{
+               long id;
+               if (sscanf(args,"%li",&id)==1){
+                       LinphoneCall *call=linphonec_get_call (id);
+                       if (linphone_core_accept_call (lc,call)==-1){
+                               linphonec_out("Fail to accept call %i\n",id);
+                       }
+               }else return 0;
+               return 1;
        }
        return 0;
 }
@@ -619,7 +812,7 @@ lpc_cmd_nat(LinphoneCore *lc, char *args)
        }
 
        nat = linphone_core_get_nat_address(lc);
-       use = linphone_core_get_firewall_policy(lc)==LINPHONE_POLICY_USE_NAT_ADDRESS;
+       use = linphone_core_get_firewall_policy(lc)==LinphonePolicyUseNatAddress;
        linphonec_out("Nat address: %s%s\n", nat ? nat : "unspecified" , use ? "" : " (disabled - use 'firewall nat' to enable)");
 
        return 1;
@@ -640,7 +833,7 @@ lpc_cmd_stun(LinphoneCore *lc, char *args)
        }
 
        stun = linphone_core_get_stun_server(lc);
-       use = linphone_core_get_firewall_policy(lc)==LINPHONE_POLICY_USE_STUN;
+       use = linphone_core_get_firewall_policy(lc)==LinphonePolicyUseStun;
        linphonec_out("Stun server: %s%s\n", stun ? stun : "unspecified" , use? "" : " (disabled - use 'firewall stun' to enable)");
 
        return 1;
@@ -657,7 +850,21 @@ lpc_cmd_firewall(LinphoneCore *lc, char *args)
        {
                if (strcmp(args,"none")==0)
                {
-                       linphone_core_set_firewall_policy(lc,LINPHONE_POLICY_NO_FIREWALL);
+                       linphone_core_set_firewall_policy(lc,LinphonePolicyNoFirewall);
+               }
+               else if (strcmp(args,"upnp")==0) 
+               {
+                       linphone_core_set_firewall_policy(lc,LinphonePolicyUseUpnp);
+               }
+               else if (strcmp(args,"ice")==0)
+               {
+                       setting = linphone_core_get_stun_server(lc);
+                       if ( ! setting )
+                       {
+                               linphonec_out("No stun server address is defined, use 'stun <address>' first\n");
+                               return 1;
+                       }
+                       linphone_core_set_firewall_policy(lc,LinphonePolicyUseIce);
                }
                else if (strcmp(args,"stun")==0)
                {
@@ -667,7 +874,7 @@ lpc_cmd_firewall(LinphoneCore *lc, char *args)
                                linphonec_out("No stun server address is defined, use 'stun <address>' first\n");
                                return 1;
                        }
-                       linphone_core_set_firewall_policy(lc,LINPHONE_POLICY_USE_STUN);
+                       linphone_core_set_firewall_policy(lc,LinphonePolicyUseStun);
                }
                else if (strcmp(args,"nat")==0)
                {
@@ -677,21 +884,27 @@ lpc_cmd_firewall(LinphoneCore *lc, char *args)
                                linphonec_out("No nat address is defined, use 'nat <address>' first");
                                return 1;
                        }
-                       linphone_core_set_firewall_policy(lc,LINPHONE_POLICY_USE_NAT_ADDRESS);
+                       linphone_core_set_firewall_policy(lc,LinphonePolicyUseNatAddress);
                }
        }
 
        switch(linphone_core_get_firewall_policy(lc))
        {
-               case LINPHONE_POLICY_NO_FIREWALL:
+               case LinphonePolicyNoFirewall:
                        linphonec_out("No firewall\n");
                        break;
-               case LINPHONE_POLICY_USE_STUN:
+               case LinphonePolicyUseStun:
                        linphonec_out("Using stun server %s to discover firewall address\n", setting ? setting : linphone_core_get_stun_server(lc));
                        break;
-               case LINPHONE_POLICY_USE_NAT_ADDRESS:
+               case LinphonePolicyUseNatAddress:
                        linphonec_out("Using supplied nat address %s.\n", setting ? setting : linphone_core_get_nat_address(lc));
                        break;
+               case LinphonePolicyUseIce:
+                       linphonec_out("Using ice with stun server %s to discover firewall address\n", setting ? setting : linphone_core_get_stun_server(lc));
+                       break;
+               case LinphonePolicyUseUpnp:
+                       linphonec_out("Using uPnP IGD protocol\n");
+                       break;
        }
        return 1;
 }
@@ -1169,6 +1382,19 @@ lpc_cmd_staticpic(LinphoneCore *lc, char *args)
                return 1;
        }
 
+       if (strcmp(arg1, "fps")==0) {
+         if (arg2) {
+               float fps = atof(arg2); /* FIXME: Handle not-a-float */
+               linphone_core_set_static_picture_fps(lc, fps);
+               return 1;
+         } else {
+               float fps;
+               fps = linphone_core_get_static_picture_fps(lc);
+               linphonec_out("Current FPS %f\n", fps);
+               return 1;
+         }
+       }
+
        return 0; /* Syntax error */
 }
 
@@ -1188,47 +1414,70 @@ static int lpc_cmd_resume(LinphoneCore *lc, char *args){
        if(linphone_core_in_call(lc))
        {
                linphonec_out("There is already a call in process pause or stop it first");
+               return 1;
        }
        if (args)
        {
-               char the_remote_address[255];
-               int n = sscanf(args, "%s", the_remote_address);
-               if (n == 1)
-               {
-                       if(linphone_core_resume_call(lc,linphone_core_get_call_by_remote_address(lc,the_remote_address)) < 0)
-                       {
-                               linphonec_out("There was a problem to resume the call check the remote address you gave %s\n",args);
-                               return 0;
-                       }
-                       else
-                       {
-                               return 1;
+               long id;
+               int n = sscanf(args, "%li", &id);
+               if (n == 1){
+                       LinphoneCall *call=linphonec_get_call (id);
+                       if (call){
+                               if(linphone_core_resume_call(lc,call)==-1){
+                                       linphonec_out("There was a problem to resume the call check the remote address you gave %s\n",args);
+                               }
                        }
-               }
+                       return 1;
+               }else return 0;
        }
        else
        {
-               int returned = 0;
-               MSList *calls = linphone_core_get_calls(lc);
-               if(ms_list_size(calls) == 1)
+               const MSList *calls = linphone_core_get_calls(lc);
+               int nbcalls=ms_list_size(calls);
+               if( nbcalls == 1)
                {
                        if(linphone_core_resume_call(lc,calls->data) < 0)
                        {
-                               linphonec_out("There was a problem to resume the unique call \n");
-                               returned = 0;
+                               linphonec_out("There was a problem to resume the unique call.\n");
                        }
-                       else
-                       {
-                               returned = 1;
-                       }
-                       ms_list_free(calls);
-                       return returned;
+                       return 1;
+               }else if (nbcalls==0){
+                       linphonec_out("There is no calls at this time.\n");
+                       return 1;
+               }else{
+                       linphonec_out("There are %i calls at this time, please specify call id as given with 'calls' command.\n");
                }
        }
        return 0;
     
 }
 
+static int lpc_cmd_conference(LinphoneCore *lc, char *args){
+       long id;
+       char subcommand[32]={0};
+       int n;
+       if (args==NULL) return 0;
+       n=sscanf(args, "%31s %li", subcommand,&id);
+       if (n == 2){
+               LinphoneCall *call=linphonec_get_call(id);
+               if (call==NULL) return 1;
+               if (strcmp(subcommand,"add")==0){
+                       linphone_core_add_to_conference(lc,call);
+                       return 1;
+               }else if (strcmp(subcommand,"rm")==0){
+                       linphone_core_remove_from_conference(lc,call);
+                       return 1;
+               }else if (strcmp(subcommand,"enter")==0){
+                       linphone_core_enter_conference(lc);
+                       return 1;
+               }else if (strcmp(subcommand,"leave")==0){
+                       linphone_core_leave_conference(lc);
+                       return 1;
+               }
+       }
+       return 0;
+}
+
 /***************************************************************************
  *
  *  Commands helper functions
@@ -1298,7 +1547,7 @@ linphonec_proxy_add(LinphoneCore *lc)
                }
 
                linphone_proxy_config_set_identity(cfg, clean);
-               if ( ! cfg->reg_identity )
+               if ( ! linphone_proxy_config_get_identity (cfg))
                {
                        linphonec_out("Invalid identity (sip:name@sip.domain.tld).\n");
                        free(input);
@@ -1367,7 +1616,7 @@ linphonec_proxy_add(LinphoneCore *lc)
                        }
 
                        linphone_proxy_config_expires(cfg, expires);
-                       linphonec_out("Expiration: %d seconds\n", cfg->expires);
+                       linphonec_out("Expiration: %d seconds\n", linphone_proxy_config_get_expires (cfg));
 
                        free(input);
                        break;
@@ -1397,7 +1646,7 @@ linphonec_proxy_add(LinphoneCore *lc)
                }
 
                linphone_proxy_config_set_route(cfg, clean);
-               if ( ! cfg->reg_route )
+               if ( ! linphone_proxy_config_get_route(cfg) )
                {
                        linphonec_out("Invalid route.\n");
                        free(input);
@@ -1461,12 +1710,14 @@ linphonec_proxy_add(LinphoneCore *lc)
 static void
 linphonec_proxy_display(LinphoneProxyConfig *cfg)
 {
+       const char *route=linphone_proxy_config_get_route(cfg);
+       const char *identity=linphone_proxy_config_get_identity(cfg);
        linphonec_out("sip address: %s\nroute: %s\nidentity: %s\nregister: %s\nexpires: %i\nregistered: %s\n",
-                       cfg->reg_proxy,
-                       (cfg->reg_route!=NULL)?cfg->reg_route:"",
-                       (cfg->reg_identity!=NULL)?cfg->reg_identity:"",
-                       (cfg->reg_sendregister)?"yes":"no",
-                       cfg->expires,
+                       linphone_proxy_config_get_addr(cfg),
+                       (route!=NULL)? route:"",
+                       (identity!=NULL)?identity:"",
+                       linphone_proxy_config_register_enabled (cfg)?"yes":"no",
+                       linphone_proxy_config_get_expires (cfg),
                        linphone_proxy_config_is_registered(cfg) ? "yes" : "no");
 }
 
@@ -1514,8 +1765,7 @@ linphonec_proxy_remove(LinphoneCore *lc, int index)
                return;
        }
        linphone_core_remove_proxy_config(lc,cfg);
-       linphonec_out("Proxy %s removed.\n", cfg->reg_proxy);
-       linphone_proxy_config_destroy(cfg);
+       linphonec_out("Proxy %s removed.\n", linphone_proxy_config_get_addr(cfg));
 }
 
 static int
@@ -1670,7 +1920,7 @@ static int lpc_cmd_register(LinphoneCore *lc, char *args){
                return 1;
        }
        passwd[0]=proxy[0]=identity[0]='\0';
-       sscanf(args,"%s %s %s",identity,proxy,passwd);
+       sscanf(args,"%511s %511s %511s",identity,proxy,passwd);
        if (proxy[0]=='\0' || identity[0]=='\0'){
                linphonec_out("Missing parameters, see help register\n");
                return 1;
@@ -1721,7 +1971,7 @@ static int lpc_cmd_duration(LinphoneCore *lc, char *args){
        for(;elem!=NULL;elem=elem->next){
                if (elem->next==NULL){
                        cl=(LinphoneCallLog*)elem->data;
-                       linphonec_out("%i seconds\n",cl->duration);
+                       linphonec_out("%i seconds\n",linphone_call_log_get_duration(cl));
                }
        }
        return 1;
@@ -1755,29 +2005,39 @@ static int lpc_cmd_status(LinphoneCore *lc, char *args)
        }
        else if (strstr(args,"hook"))
        {
-               gstate_t call_state=linphone_core_get_state(lc,GSTATE_GROUP_CALL);
-/*
-               if (!cfg || !linphone_proxy_config_is_registered(cfg)){
-                       linphonec_out("unregistered\n");
-                       return 1;
-               }
- */
-               switch(call_state){
-                       case GSTATE_CALL_OUT_INVITE:
-                               linphonec_out("hook=dialing\n");
+               LinphoneCall *call=linphone_core_get_current_call (lc);
+               LinphoneCallState call_state=LinphoneCallIdle;
+               if (call) call_state=linphone_call_get_state(call);
+
+               switch(call_state){
+                       case LinphoneCallOutgoingInit:
+                               linphonec_out("hook=outgoing_init sip:%s\n",linphonec_get_callee());
                        break;
-                       case GSTATE_CALL_IDLE:
-                               linphonec_out("hook=offhook\n");
+                       case LinphoneCallOutgoingProgress:
+                               linphonec_out("hook=dialing sip:%s\n",linphonec_get_callee());
+                       break;
+                       case LinphoneCallOutgoingRinging:
+                               linphonec_out("hook=ringing sip:%s\n",linphonec_get_callee());
                        break;
-                       case GSTATE_CALL_OUT_CONNECTED:
-                               linphonec_out("Call out, hook=%s duration=%i\n", linphonec_get_callee(),
-                                       linphone_core_get_current_call_duration(lc));
+                       case LinphoneCallPaused:
+                               linphonec_out("hook=paused sip:%s\n",linphonec_get_callee());
                        break;
-                       case GSTATE_CALL_IN_CONNECTED:
-                               linphonec_out("hook=answered duration=%i\n" ,
-                                       linphone_core_get_current_call_duration(lc));
+                       case LinphoneCallIdle:
+                               linphonec_out("hook=offhook\n");
+                       break;
+                       case LinphoneCallStreamsRunning:
+                       case LinphoneCallConnected:
+                               if (linphone_call_get_dir(call)==LinphoneCallOutgoing){
+                                       linphonec_out("Call out, hook=%s duration=%i, muted=%s rtp-xmit-muted=%s\n", linphonec_get_callee(),
+                                             linphone_core_get_current_call_duration(lc),
+                                             linphone_core_is_mic_muted (lc) ? "yes" : "no",
+                                             linphone_core_is_rtp_muted(lc) ? "yes"  : "no");
+                               }else{
+                                       linphonec_out("hook=answered duration=%i %s\n" ,
+                                               linphone_core_get_current_call_duration(lc), linphonec_get_caller());
+                               }
                                break;
-                       case GSTATE_CALL_IN_INVITE:
+                       case LinphoneCallIncomingReceived:
                                linphonec_out("Incoming call from %s\n",linphonec_get_caller());
                                break;
                        default:
@@ -1808,6 +2068,35 @@ static int lpc_cmd_ports(LinphoneCore *lc, char *args)
        return 1;
 }
 
+static int lpc_cmd_param(LinphoneCore *lc, char *args)
+{
+       char section[20], param[20], value[50];
+       const char *string;
+
+       if (args == NULL) {
+               return 0;
+       }
+       switch (sscanf(args,"%19s %19s %49s",section,param,value)) {
+               // case 1 might show all current settings under a section
+               case 2:
+                       string = lp_config_get_string(linphone_core_get_config(lc), section, param, "(undef)");
+                       linphonec_out("current value: %s\n", string);
+                       break;
+               case 3:
+                       if (lp_config_get_string(linphone_core_get_config(lc), section, param, NULL) != NULL) {
+                               lp_config_set_string(linphone_core_get_config(lc), section, param, value);
+                       // no indication of existence
+                               linphonec_out("updated value: %s\n", value);
+                       } else {
+                               linphonec_out("only update of existing variables are allowed\n");
+                       }
+                       break;
+               default:
+                       return 0;
+    }
+       return 1;
+}
+
 static int lpc_cmd_speak(LinphoneCore *lc, char *args){
 #ifndef WIN32
        char voice[64];
@@ -1819,7 +2108,7 @@ static int lpc_cmd_speak(LinphoneCore *lc, char *args){
        
     if (!args) return 0;
        memset(voice,0,sizeof(voice));
-       sscanf(args,"%s63",voice);
+       sscanf(args,"%63s",voice);
        sentence=args+strlen(voice);
        wavfile=tempnam("/tmp/","linphonec-espeak-");
        snprintf(cl,sizeof(cl),"espeak -v %s -s 100 -w %s --stdin",voice,wavfile);
@@ -1841,7 +2130,15 @@ static int lpc_cmd_speak(LinphoneCore *lc, char *args){
        return 1;
 }
 
-static int lpc_cmd_codec(LinphoneCore *lc, char *args){
+static int lpc_cmd_acodec(LinphoneCore *lc, char *args){
+    return lpc_cmd_codec(AUDIO, lc, args);
+}
+
+static int lpc_cmd_vcodec(LinphoneCore *lc, char *args){
+    return lpc_cmd_codec(VIDEO, lc, args);
+}
+
+static int lpc_cmd_codec(int type, LinphoneCore *lc, char *args){
        char *arg1 = args;
        char *arg2 = NULL;
        char *ptr = args;
@@ -1862,20 +2159,20 @@ static int lpc_cmd_codec(LinphoneCore *lc, char *args){
 #ifdef HAVE_READLINE
                rl_inhibit_completion=1;
 #endif
-        if (!strcmp(arg2,"all")) linphonec_codec_enable(lc,-1);
-        else linphonec_codec_enable(lc,atoi(arg2));
+        if (!strcmp(arg2,"all")) linphonec_codec_enable(type,lc,-1);
+        else linphonec_codec_enable(type,lc,atoi(arg2));
 #ifdef HAVE_READLINE
                rl_inhibit_completion=0;
 #endif
        }
        else if (strcmp(arg1,"list")==0)
        {
-               linphonec_codec_list(lc);
+               linphonec_codec_list(type,lc);
        }
        else if (strcmp(arg1,"disable")==0)
        {
-        if (!strcmp(arg2,"all")) linphonec_codec_disable(lc,-1);
-        else linphonec_codec_disable(lc,atoi(arg2));
+        if (!strcmp(arg2,"all")) linphonec_codec_disable(type,lc,-1);
+        else linphonec_codec_disable(type,lc,atoi(arg2));
        }
        else
        {
@@ -1885,12 +2182,18 @@ static int lpc_cmd_codec(LinphoneCore *lc, char *args){
        return 1;
 }
 
-static void linphonec_codec_list(LinphoneCore *lc){
+static void linphonec_codec_list(int type, LinphoneCore *lc){
        PayloadType *pt;
-    codecs_config_t *config=&lc->codecs_conf;
        int index=0;
-       MSList *node;
-       for(node=config->audio_codecs;node!=NULL;node=ms_list_next(node)){
+       const MSList *node=NULL;
+
+    if (type == AUDIO) {
+      node=linphone_core_get_audio_codecs(lc);
+    } else if(type==VIDEO) {
+      node=linphone_core_get_video_codecs(lc);
+    }
+
+       for(;node!=NULL;node=ms_list_next(node)){
                pt=(PayloadType*)(node->data);
         linphonec_out("%2d: %s (%d) %s\n", index, pt->mime_type, pt->clock_rate, 
                    linphone_core_payload_type_enabled(lc,pt) ? "enabled" : "disabled");
@@ -1898,32 +2201,44 @@ static void linphonec_codec_list(LinphoneCore *lc){
        }
 }
 
-static void linphonec_codec_enable(LinphoneCore *lc, int sel_index){
+static void linphonec_codec_enable(int type, LinphoneCore *lc, int sel_index){
        PayloadType *pt;
-    codecs_config_t *config=&lc->codecs_conf;
        int index=0;
-       MSList *node;
-    for(node=config->audio_codecs;node!=NULL;node=ms_list_next(node)){
+       const MSList *node=NULL;
+
+       if (type == AUDIO) {
+               node=linphone_core_get_audio_codecs(lc);
+       } else if(type==VIDEO) {
+               node=linphone_core_get_video_codecs(lc);
+       }
+
+    for(;node!=NULL;node=ms_list_next(node)){
         if (index == sel_index || sel_index == -1) {
                    pt=(PayloadType*)(node->data);
-            pt->flags|=PAYLOAD_TYPE_ENABLED;
+            linphone_core_enable_payload_type (lc,pt,TRUE);
             linphonec_out("%2d: %s (%d) %s\n", index, pt->mime_type, pt->clock_rate, "enabled");
         }
                index++;
        }
 }
 
-static void linphonec_codec_disable(LinphoneCore *lc, int sel_index){
+static void linphonec_codec_disable(int type, LinphoneCore *lc, int sel_index){
        PayloadType *pt;
-    codecs_config_t *config=&lc->codecs_conf;
        int index=0;
-       MSList *node;
-       for(node=config->audio_codecs;node!=NULL;node=ms_list_next(node)){
-        if (index == sel_index || sel_index == -1) {
-               pt=(PayloadType*)(node->data);
-            pt->flags&=~PAYLOAD_TYPE_ENABLED;
-            linphonec_out("%2d: %s (%d) %s\n", index, pt->mime_type, pt->clock_rate, "disabled");
-        }
+       const MSList *node=NULL;
+
+       if (type == AUDIO) {
+               node=linphone_core_get_audio_codecs(lc);
+       } else if(type==VIDEO) {
+               node=linphone_core_get_video_codecs(lc);
+       }
+
+       for(;node!=NULL;node=ms_list_next(node)){
+               if (index == sel_index || sel_index == -1) {
+                       pt=(PayloadType*)(node->data);
+                       linphone_core_enable_payload_type (lc,pt,FALSE);
+                       linphonec_out("%2d: %s (%d) %s\n", index, pt->mime_type, pt->clock_rate, "disabled");
+               }
                index++;
        }
 }
@@ -1932,6 +2247,7 @@ static int lpc_cmd_echocancellation(LinphoneCore *lc, char *args){
        char *arg1 = args;
        char *arg2 = NULL;
        char *ptr = args;
+       LpConfig *config=linphone_core_get_config(lc);
 
        if (!args) return 0;
 
@@ -1954,16 +2270,16 @@ static int lpc_cmd_echocancellation(LinphoneCore *lc, char *args){
             n = sscanf(arg2, "%d %d %d", &delay, &tail_len, &frame_size);
 
             if (n == 1) {   
-                lp_config_set_int(lc->config,"sound","ec_delay",delay);
+                lp_config_set_int(config,"sound","ec_delay",delay);
             }
             else if (n == 2) {
-                lp_config_set_int(lc->config,"sound","ec_delay",delay);
-                lp_config_set_int(lc->config,"sound","ec_tail_len",tail_len);
+                lp_config_set_int(config,"sound","ec_delay",delay);
+                lp_config_set_int(config,"sound","ec_tail_len",tail_len);
             }
             else if (n == 3) {
-                lp_config_set_int(lc->config,"sound","ec_delay",delay);
-                lp_config_set_int(lc->config,"sound","ec_tail_len",tail_len);
-                lp_config_set_int(lc->config,"sound","ec_framesize",frame_size);
+                lp_config_set_int(config,"sound","ec_delay",delay);
+                lp_config_set_int(config,"sound","ec_tail_len",tail_len);
+                lp_config_set_int(config,"sound","ec_framesize",frame_size);
             }
         }
     }
@@ -1973,9 +2289,9 @@ static int lpc_cmd_echocancellation(LinphoneCore *lc, char *args){
     else if (strcmp(arg1,"show")==0){
         linphonec_out("echo cancellation is %s; delay %d, tail length %d, frame size %d\n", 
             linphone_core_echo_cancellation_enabled(lc) ? "on" : "off",
-            lp_config_get_int(lc->config,"sound","ec_delay",0),
-            lp_config_get_int(lc->config,"sound","ec_tail_len",0),
-            lp_config_get_int(lc->config,"sound","ec_framesize",0));        
+            lp_config_get_int(config,"sound","ec_delay",0),
+            lp_config_get_int(config,"sound","ec_tail_len",0),
+            lp_config_get_int(config,"sound","ec_framesize",0));        
     }
     else {
         return 0;
@@ -1984,6 +2300,304 @@ static int lpc_cmd_echocancellation(LinphoneCore *lc, char *args){
     return 1;
 }
 
+static int lpc_cmd_echolimiter(LinphoneCore *lc, char *args){
+       if (args){
+               if (strcmp(args,"on")==0){
+                       linphone_core_enable_echo_limiter (lc,TRUE);
+               }else if (strcmp(args,"off")==0){
+                       linphone_core_enable_echo_limiter (lc,FALSE);
+               }
+       }
+       linphonec_out("Echo limiter is now %s.\n",linphone_core_echo_limiter_enabled (lc) ? "on":"off");
+       return 1;
+}
+
+static int lpc_cmd_mute_mic(LinphoneCore *lc, char *args)
+{
+       linphone_core_mute_mic(lc, 1);
+       return 1;
+}
+
+static int lpc_cmd_unmute_mic(LinphoneCore *lc, char *args){
+       linphone_core_mute_mic(lc, 0);
+       return 1;
+}
+
+static int lpc_cmd_playback_gain(LinphoneCore *lc, char *args)
+{
+       if (args){
+               linphone_core_set_playback_gain_db(lc, atof(args));
+               return 1;
+       }
+       return 0;
+}
+
+static int lpc_cmd_rtp_no_xmit_on_audio_mute(LinphoneCore *lc, char *args)
+{
+       bool_t rtp_xmit_off=FALSE;
+       char *status;
+
+       if(args){
+               if(strstr(args,"1"))rtp_xmit_off=TRUE;
+               if(linphone_core_get_current_call (lc)==NULL)
+                       linphone_core_set_rtp_no_xmit_on_audio_mute(lc,rtp_xmit_off);
+               else 
+                       linphonec_out("nortp-on-audio-mute: call in progress - cannot change state\n");
+       }
+       rtp_xmit_off=linphone_core_get_rtp_no_xmit_on_audio_mute(lc);
+       if (rtp_xmit_off) status="off";
+       else status="on";
+       linphonec_out("rtp transmit %s when audio muted\n",status);
+       return 1;
+}
+
+#ifdef VIDEO_ENABLED
+static int _lpc_cmd_video_window(LinphoneCore *lc, char *args, bool_t is_preview){
+       char subcommand[64];
+       int a,b;
+       int err;
+       VideoParams *params=is_preview ? &lpc_preview_params : &lpc_video_params;
+
+       if (!args) return 0;
+       err=sscanf(args,"%63s %i %i",subcommand,&a,&b);
+       if (err>=1){
+               if (strcmp(subcommand,"pos")==0){
+                       if (err<3) return 0;
+                       params->x=a;
+                       params->y=b;
+                       params->refresh=TRUE;
+               }else if (strcmp(subcommand,"size")==0){
+                       if (err<3) return 0;
+                       params->w=a;
+                       params->h=b;
+                       params->refresh=TRUE;
+               }else if (strcmp(subcommand,"show")==0){
+                       params->show=TRUE;
+                       params->refresh=TRUE;
+                       if (is_preview) linphone_core_enable_video_preview (lc,TRUE);
+               }else if (strcmp(subcommand,"hide")==0){
+                       params->show=FALSE;
+                       params->refresh=TRUE;
+                       if (is_preview) linphone_core_enable_video_preview (lc,FALSE);
+               }else if (strcmp(subcommand,"id")==0){
+                       if (err == 1){
+                               linphonec_out("vwindow id: 0x%x\n",is_preview ? linphone_core_get_native_preview_window_id (lc) :
+                                             linphone_core_get_native_video_window_id (lc));
+                               return 1;
+                       } else if (err != 2) return 0;
+                       params->wid=a;
+                       if (is_preview)
+                               linphone_core_set_native_preview_window_id (lc,a);
+                       else
+                               linphone_core_set_native_video_window_id(lc,a);
+               }else if (is_preview==TRUE){
+                       if (strcmp(subcommand,"integrated")==0){
+                               linphone_core_use_preview_window (lc,FALSE);
+                       }else if (strcmp(subcommand,"standalone")==0){
+                               linphone_core_use_preview_window(lc,TRUE);
+                       }else return 0;
+               }else return 0;
+       }
+       return 1;
+}
+
+static int lpc_cmd_video_window(LinphoneCore *lc, char *args){
+       return _lpc_cmd_video_window(lc, args, FALSE);
+}
+
+static int lpc_cmd_preview_window(LinphoneCore *lc, char *args){
+       return _lpc_cmd_video_window(lc, args, TRUE);
+}
+#endif
+
+static void lpc_display_global_state(LinphoneCore *lc){
+       linphonec_out("Global liblinphone state\n%s\n",
+                     linphone_global_state_to_string(linphone_core_get_global_state(lc)));
+}
+
+static void lpc_display_call_states(LinphoneCore *lc){
+       LinphoneCall *call;
+       const MSList *elem;
+       char *tmp;
+       linphonec_out("Call states\n"
+                     "Id |            Destination              |      State      |    Flags   |\n"
+                     "------------------------------------------------------------------------\n");
+       elem=linphone_core_get_calls(lc);
+       if (elem==NULL){
+               linphonec_out("(empty)\n");
+       }else{
+               for(;elem!=NULL;elem=elem->next){
+                       const char *flag;
+                       call=(LinphoneCall*)elem->data;
+                       bool_t in_conference=linphone_call_params_local_conference_mode(linphone_call_get_current_params(call));
+                       tmp=linphone_call_get_remote_address_as_string (call);
+                       flag=in_conference ? "conferencing" : "";
+                       flag=linphone_call_has_transfer_pending(call) ? "transfer pending" : flag;
+                       linphonec_out("%-2i | %-35s | %-15s | %s\n",(int)(long)linphone_call_get_user_pointer(call),
+                                                 tmp,linphone_call_state_to_string(linphone_call_get_state(call))+strlen("LinphoneCall"),flag);
+                       ms_free(tmp);
+               }
+       }
+}
+
+static void lpc_display_proxy_states(LinphoneCore *lc){
+       const MSList *elem;
+       linphonec_out("Proxy registration states\n"
+                     "           Identity                      |      State\n"
+                     "------------------------------------------------------------\n");
+       elem=linphone_core_get_proxy_config_list (lc);
+       if (elem==NULL) linphonec_out("(empty)\n");
+       else {
+               for(;elem!=NULL;elem=elem->next){
+                       LinphoneProxyConfig *cfg=(LinphoneProxyConfig*)elem->data;
+                       linphonec_out("%-40s | %s\n",linphone_proxy_config_get_identity (cfg),
+                                                 linphone_registration_state_to_string(linphone_proxy_config_get_state(cfg)));
+               }
+       }
+}
+
+static int lpc_cmd_states(LinphoneCore *lc, char *args){
+       if (args==NULL) {
+               lpc_display_global_state(lc);
+               lpc_display_call_states(lc);
+               lpc_display_proxy_states(lc);
+               return 1;
+       }
+       if (strcmp(args,"global")==0){
+               lpc_display_global_state(lc);
+               return 1;
+       }
+       if (strcmp(args,"proxies")==0){
+               lpc_display_proxy_states(lc);
+               return 1;
+       }
+       if (strcmp(args,"calls")==0){
+               lpc_display_call_states(lc);
+               return 1;
+       }
+       return 0;
+}
+
+#ifdef VIDEO_ENABLED
+static int lpc_cmd_camera(LinphoneCore *lc, char *args){
+       LinphoneCall *call=linphone_core_get_current_call(lc);
+       bool_t activated=FALSE;
+       
+       if (linphone_core_video_enabled (lc)==FALSE){
+               linphonec_out("Video is disabled, re-run linphonec with -V option.");
+               return 1;
+       }
+
+       if (args){
+               if (strcmp(args,"on")==0)
+                       activated=TRUE;
+               else if (strcmp(args,"off")==0)
+                       activated=FALSE;
+               else
+                       return 0;
+       }
+
+       if (call==NULL){
+               if (args){
+                       linphonec_camera_enabled=activated;
+               }
+               if (linphonec_camera_enabled){
+                       linphonec_out("Camera is enabled. Video stream will be setup immediately for outgoing and incoming calls.\n");
+               }else{
+                       linphonec_out("Camera is disabled. Calls will be established with audio-only, with the possibility to later add video using 'camera on'.\n");
+               }
+       }else{
+               const LinphoneCallParams *cp=linphone_call_get_current_params (call);
+               if (args){
+                       linphone_call_enable_camera(call,activated);
+                       if (linphone_call_get_state(call)==LinphoneCallStreamsRunning){
+                               if ((activated && !linphone_call_params_video_enabled (cp))){
+                                       /*update the call to add the video stream*/
+                                       LinphoneCallParams *ncp=linphone_call_params_copy(cp);
+                                       linphone_call_params_enable_video(ncp,TRUE);
+                                       linphone_core_update_call(lc,call,ncp);
+                                       linphone_call_params_destroy (ncp);
+                                       linphonec_out("Trying to bring up video stream...\n");
+                               }
+                       }
+               }
+               if (linphone_call_camera_enabled (call))
+                               linphonec_out("Camera is allowed for current call.\n");
+               else linphonec_out("Camera is dis-allowed for current call.\n");
+       }
+       return 1;
+}
+
+static int lpc_cmd_snapshot(LinphoneCore *lc, char *args){
+       LinphoneCall *call;
+       if (!args) return 0;
+       call=linphone_core_get_current_call(lc);
+       if (call!=NULL){
+               linphone_call_take_video_snapshot(call,args);
+               linphonec_out("Taking video snapshot in file %s\n", args);
+       }else linphonec_out("There is no active call.\n");
+       return 1;
+}
+
+static int lpc_cmd_vfureq(LinphoneCore *lc, char *arg){
+       LinphoneCall *call;
+       call=linphone_core_get_current_call(lc);
+       if (call!=NULL){
+               linphone_call_send_vfu_request(call);
+               linphonec_out("VFU request sent\n");
+       }else linphonec_out("There is no active call.\n");
+       return 1;
+}
+#endif
+
+static int lpc_cmd_identify(LinphoneCore *lc, char *args){
+       LinphoneCall *call;
+       const char *remote_ua;
+       if (args==NULL){
+               call=linphone_core_get_current_call(lc);
+               if (call==NULL) {
+                       linphonec_out("There is currently running call. Specify call id.\n");
+                       return 0;
+               }
+       }else{
+               call=linphonec_get_call(atoi(args));
+               if (call==NULL){
+                       return 0;
+               }
+       }
+       remote_ua=linphone_call_get_remote_user_agent(call);
+       if (remote_ua){
+               linphonec_out("Remote user agent string is: %s\n",remote_ua);
+       }
+       return 1;
+}
+
+static int lpc_cmd_ringback(LinphoneCore *lc, char *args){
+       if (!args) return 0;
+       if (strcmp(args,"disable")==0){
+               linphone_core_set_remote_ringback_tone(lc,NULL);
+               linphonec_out("Disabling ringback tone.\n");
+               return 1;
+       }
+       linphone_core_set_remote_ringback_tone (lc,args);
+       linphonec_out("Using %s as ringback tone to be played to callers.",args);
+       return 1;
+}
+
+static int zrtp_set_verified(LinphoneCore *lc, char *args, bool_t verified){
+       LinphoneCall *call=linphone_core_get_current_call(lc);
+       if (linphone_call_params_get_media_encryption(linphone_call_get_current_params(call))==LinphoneMediaEncryptionZRTP){
+               linphone_call_set_authentication_token_verified(call,verified);
+       }
+       return 1;
+}
+static int lpc_cmd_zrtp_verified(LinphoneCore *lc, char *args){
+       return zrtp_set_verified(lc,args,TRUE);
+}
+static int lpc_cmd_zrtp_unverified(LinphoneCore *lc, char *args){
+       return zrtp_set_verified(lc,args,FALSE);
+}
+
 /***************************************************************************
  *
  *  Command table management funx
@@ -2004,6 +2618,12 @@ lpc_find_command(const char *name)
                        return &commands[i];
        }
 
+       for (i=0; advanced_commands[i].name; ++i)
+       {
+               if (strcmp(name, advanced_commands[i].name) == 0)
+                       return &advanced_commands[i];
+       }
+
        return (LPC_COMMAND *)NULL;
 }