Ignore:
Timestamp:
Jun 28, 2006 4:46:49 PM (18 years ago)
Author:
bennylp
Message:

Major improvements in PJSIP to support TCP. The changes fall into these categories: (1) the TCP transport implementation itself (*.[hc]), (2) bug-fix in SIP transaction when using reliable transports, (3) support for TCP transport in PJSUA-LIB/PJSUA, and (4) changes in PJSIP-TEST to support TCP testing.

File:
1 edited

Legend:

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

    r503 r563  
    105105typedef struct transport_data 
    106106{ 
    107     int                  index; 
    108     pjsip_transport     *tp; 
     107    int                      index; 
     108    pjsip_transport_type_e   type; 
     109    pjsip_host_port          local_name; 
     110 
     111    union { 
     112        pjsip_transport     *tp; 
     113        pjsip_tpfactory     *factory; 
     114        void                *ptr; 
     115    } data; 
     116 
    109117} transport_data; 
    110118 
Note: See TracChangeset for help on using the changeset viewer.