Ignore:
Timestamp:
Mar 10, 2010 1:33:25 PM (15 years ago)
Author:
bennylp
Message:

More #1032 (new SIP TCP/TLS transport callback):

  • PJSUA-LIB transport callback, if installed, will call the previously registered callback, to allow multiple transport callbacks to be installed
  • there seem to be a bug with the use of "pjsip_tp_state_callback" everywhere (the "pjsip_tp_state_callback" type is pointer, but most variables of this type are declared to pointer too)
File:
1 edited

Legend:

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

    r3110 r3119  
    28052805    case PJSIP_TP_STATE_CONNECTED: 
    28062806        { 
    2807             PJ_LOG(3,(THIS_FILE, "SIP transport %s is connected to %s",  
     2807            PJ_LOG(3,(THIS_FILE, "SIP %s transport is connected to %s", 
    28082808                     tp->type_name, host_port)); 
    28092809        } 
     
    28142814            char buf[100]; 
    28152815 
    2816             snprintf(buf, sizeof(buf), "SIP transport %s is disconnected from %s", 
     2816            snprintf(buf, sizeof(buf), "SIP %s transport is disconnected from %s", 
    28172817                     tp->type_name, host_port); 
    28182818            pjsua_perror(THIS_FILE, buf, info->status); 
Note: See TracChangeset for help on using the changeset viewer.