Changeset 1618 for pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c
- Timestamp:
- Dec 5, 2007 4:09:59 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c
r1615 r1618 1347 1347 1348 1348 /* Create the transport */ 1349 if (type & PJSIP_TRANSPORT_UDP) {1349 if (type==PJSIP_TRANSPORT_UDP || type==PJSIP_TRANSPORT_UDP6) { 1350 1350 /* 1351 1351 * Create UDP transport (IPv4 or IPv6). … … 1408 1408 #if defined(PJ_HAS_TCP) && PJ_HAS_TCP!=0 1409 1409 1410 } else if (type == PJSIP_TRANSPORT_TCP ) {1410 } else if (type == PJSIP_TRANSPORT_TCP || type == PJSIP_TRANSPORT_TCP6) { 1411 1411 /* 1412 1412 * Create TCP transport.
Note: See TracChangeset
for help on using the changeset viewer.