Ignore:
Timestamp:
Jul 29, 2019 2:32:55 AM (5 years ago)
Author:
nanang
Message:

Misc (re #2210): Added SIP transport type DLTS. Note that this is not an implementation, just for app so it can register its own implementation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip/sip_types.h

    r4262 r6047  
    7474    PJSIP_TRANSPORT_TLS, 
    7575 
    76     /** SCTP. */ 
     76    /** DTLS, not implemented yet. */ 
     77    PJSIP_TRANSPORT_DTLS, 
     78 
     79    /** SCTP, not implemented yet. */ 
    7780    PJSIP_TRANSPORT_SCTP, 
    7881 
     
    9699 
    97100    /** TLS over IPv6 */ 
    98     PJSIP_TRANSPORT_TLS6 = PJSIP_TRANSPORT_TLS + PJSIP_TRANSPORT_IPV6 
     101    PJSIP_TRANSPORT_TLS6 = PJSIP_TRANSPORT_TLS + PJSIP_TRANSPORT_IPV6, 
     102 
     103    /** DTLS over IPv6, not implemented yet */ 
     104    PJSIP_TRANSPORT_DTLS6 = PJSIP_TRANSPORT_DTLS + PJSIP_TRANSPORT_IPV6 
    99105 
    100106} pjsip_transport_type_e; 
Note: See TracChangeset for help on using the changeset viewer.