Ignore:
Timestamp:
Oct 25, 2009 9:02:07 AM (14 years ago)
Author:
bennylp
Message:

Initial commit for ticket #950: QoS support:

  • implementation:
    • PJLIB (sock_qos*.*)
  • added QoS support in:
    • SIP UDP transport,
    • SIP TCP transport,
    • media UDP transport (done in pjsua-lib),
    • pjnath ICE stream transport,
    • pjnath STUN socket,
    • pjnath TURN client
  • added QoS options in pjsua-lib:
    • QoS fields in pjsua_transport_config
  • added "--set-qos" parameter in pjsua

Notes:

  • QoS in TLS transport is not yet implemented, waiting for #957
  • build ok on VS6, VS2005 (multiple targets), Carbide, and Mingw
  • no run-time testing yet
File:
1 edited

Legend:

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

    r2960 r2966  
    15181518    pjsip_tls_setting   tls_setting; 
    15191519 
     1520    /** 
     1521     * QoS traffic type to be set on this transport. When application wants 
     1522     * to apply QoS tagging to the transport, it's preferable to set this 
     1523     * field rather than \a qos_param fields since this is more portable. 
     1524     * 
     1525     * Default is QoS not set. 
     1526     */ 
     1527    pj_qos_type         qos_type; 
     1528 
     1529    /** 
     1530     * Set the low level QoS parameters to the transport. This is a lower 
     1531     * level operation than setting the \a qos_type field and may not be 
     1532     * supported on all platforms. 
     1533     * 
     1534     * Default is QoS not set. 
     1535     */ 
     1536    pj_qos_params       qos_params; 
     1537 
    15201538} pjsua_transport_config; 
    15211539 
Note: See TracChangeset for help on using the changeset viewer.