Changes between Version 6 and Version 7 of Symbian_AP_Reconnection
- Timestamp:
- Feb 25, 2009 5:40:13 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Symbian_AP_Reconnection
v6 v7 101 101 102 102 === Socket call get stucked after reconnecting to different access point (AP) === 103 Steps to reproduce: 103 '''Symptom:''' :: 104 The library gets stucked in {{{pjsua_destroy()}}} when the application tries to destroy the stack when it detects that the AP connection is down. 105 106 This is a problem with the socket in general and not PJSIP. Below are steps to reproduce with a plain UDP socket: 104 107 1. Create RConnection, call Start() to connect to AP 105 108 1. Create UDP socket, call !SendTo() to send a packet … … 115 118 - the socket is closed and re-opened. In this case the udp.!SendTo() should complete successfully 116 119 117 The implication of above symptom is the library may get stucked in {{{pjsua_destroy()}}} when the application tries to destroy the stack when it detects that the AP connection is down.118 119 120 Currently we don't have a solution for this, except to only use one AP (perhaps to select the AP when PJSIP is started and lock the RConnection that is assigned to PJLIB to this AP). 120 121