Changeset 5230
- Timestamp:
- Dec 31, 2015 5:25:45 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_transport_udp.c
r5035 r5230 1091 1091 status = pj_sock_getsockname(sock, &tp->base.local_addr, 1092 1092 &tp->base.addr_len); 1093 if (status != PJ_SUCCESS) 1094 return status; 1093 if (status != PJ_SUCCESS) { 1094 pj_sock_close(sock); 1095 return status; 1096 } 1095 1097 1096 1098 /* Assign the socket and published address to transport. */
Note: See TracChangeset
for help on using the changeset viewer.