Changeset 544


Ignore:
Timestamp:
Jun 22, 2006 10:29:51 PM (18 years ago)
Author:
bennylp
Message:

Added dq command in pjsua to dump current call quality

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c

    r541 r544  
    12781278    puts("|  x  Xfer call                |      Media Commands:     |  Status & Config: |"); 
    12791279    puts("|  #  Send DTMF string         |                          |                   |"); 
    1280     puts("|                              | cl  List ports           |  d  Dump status   |"); 
     1280    puts("| dq  Dump curr. call quality  | cl  List ports           |  d  Dump status   |"); 
    12811281    puts("|                              | cc  Connect port         | dd  Dump detailed |"); 
    12821282    puts("|                              | cd  Disconnect port      | dc  Dump config   |"); 
     
    19761976                              "Dumping configuration (%d bytes):\n%s\n", 
    19771977                              len, settings)); 
     1978 
     1979            } else if (menuin[1] == 'q') { 
     1980 
     1981                if (current_call != PJSUA_INVALID_ID) { 
     1982                    char buf[1024]; 
     1983                    pjsua_call_dump(current_call, PJ_TRUE, buf,  
     1984                                    sizeof(buf), "  "); 
     1985                    PJ_LOG(3,(THIS_FILE, "\n%s", buf)); 
     1986                } else { 
     1987                    PJ_LOG(3,(THIS_FILE, "No current call")); 
     1988                } 
     1989 
    19781990            } else { 
    19791991                app_dump(menuin[1]=='d'); 
Note: See TracChangeset for help on using the changeset viewer.