Changeset 5322 for pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c
- Timestamp:
- May 26, 2016 6:03:43 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c
r5311 r5322 2449 2449 PJSUA_LOCK(); 2450 2450 2451 if ((t->type & PJSIP_TRANSPORT_UDP) == PJSIP_TRANSPORT_UDP) {2451 if ((t->type & ~PJSIP_TRANSPORT_IPV6) == PJSIP_TRANSPORT_UDP) { 2452 2452 2453 2453 pjsip_transport *tp = t->data.tp; … … 2470 2470 status = PJ_SUCCESS; 2471 2471 2472 } else if ((t->type & PJSIP_TRANSPORT_TCP) == PJSIP_TRANSPORT_TCP ||2473 (t->type & PJSIP_TRANSPORT_TLS) == PJSIP_TRANSPORT_TLS)2472 } else if ((t->type & ~PJSIP_TRANSPORT_IPV6) == PJSIP_TRANSPORT_TCP || 2473 (t->type & ~PJSIP_TRANSPORT_IPV6) == PJSIP_TRANSPORT_TLS) 2474 2474 { 2475 2475
Note: See TracChangeset
for help on using the changeset viewer.