Ignore:
Timestamp:
Nov 9, 2009 8:51:34 AM (15 years ago)
Author:
bennylp
Message:

Ticket #950 and #957:

  • added QoS options on PJLIB/PJLIB SSL/TLS socket/transport
  • added demo in Symbian ua.cpp
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip/sip_transport_tls.c

    r2970 r2998  
    251251    if (ssock_param.read_buffer_size < PJSIP_MAX_PKT_LEN) 
    252252        ssock_param.read_buffer_size = PJSIP_MAX_PKT_LEN; 
     253    ssock_param.qos_type = listener->tls_setting.qos_type; 
     254    ssock_param.qos_ignore_error = listener->tls_setting.qos_ignore_error; 
     255    pj_memcpy(&ssock_param.qos_params, &listener->tls_setting.qos_params, 
     256              sizeof(ssock_param.qos_params)); 
    253257 
    254258    has_listener = PJ_FALSE; 
     
    798802    if (ssock_param.read_buffer_size < PJSIP_MAX_PKT_LEN) 
    799803        ssock_param.read_buffer_size = PJSIP_MAX_PKT_LEN; 
     804    ssock_param.qos_type = listener->tls_setting.qos_type; 
     805    ssock_param.qos_ignore_error = listener->tls_setting.qos_ignore_error; 
     806    pj_memcpy(&ssock_param.qos_params, &listener->tls_setting.qos_params, 
     807              sizeof(ssock_param.qos_params)); 
    800808 
    801809    switch(listener->tls_setting.method) { 
Note: See TracChangeset for help on using the changeset viewer.