Ignore:
Timestamp:
Jul 18, 2006 2:39:40 PM (18 years ago)
Author:
bennylp
Message:

Small improvements: (1) pjsua now responds to incoming OPTIONS request, which means that some modules (evsub, invite) need to register their capabilities to the endpoint, (2) added command in pjsua to send arbitrary request

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua-lib/pjsua.h

    r611 r612  
    418418    pjsua_callback  cb; 
    419419 
     420    /** 
     421     * User agent string (default empty) 
     422     */ 
     423    pj_str_t        user_agent; 
     424 
    420425} pjsua_config; 
    421426 
     
    469474        pjsip_cred_dup(pool, &dst->cred_info[i], &src->cred_info[i]); 
    470475    } 
     476 
     477    pj_strdup_with_null(pool, &dst->user_agent, &src->user_agent); 
    471478} 
    472479 
     
    20812088     * number. 
    20822089     * 
    2083      * Default: 3. 
     2090     * Default: 5. 
    20842091     */ 
    20852092    unsigned            quality; 
     
    21002107    cfg->has_ioqueue = PJ_TRUE; 
    21012108    cfg->thread_cnt = 1; 
    2102     cfg->quality = 3; 
     2109    cfg->quality = 5; 
    21032110} 
    21042111 
Note: See TracChangeset for help on using the changeset viewer.