|
List Info
Thread: FW: CR:OVIL-7DPT7U: It takes a long time to invalidate a connection to a WLAN AP th
|
|
| FW: CR:OVIL-7DPT7U: It takes a long
time to invalidate a connection to a
WLAN AP th |

|
2008-05-05 10:10:05 |
|
______________________________________________
From: Shivnani Amit (EXT-InfoVision-MSW/Dallas)
Sent: Friday, May 02, 2008 1:25 PM
To: TP-SP-SWD-MMC-VIDEO-HELIX DG
Subject: CR:OVIL-7DPT7U: It takes a long time to invalidate a connection to a WLAN AP that is not valid or is out of range.
Nokia submits this code under the terms of a commercial contribution agreement with RealNetworks, and I am authorized to contribute this code under said agreement."
Modified by: ext-amit.shivnani nokia.com
Date: 02-May-2008
Project: SymbianMmf_Rel
TSW: OVIL-7DPT7U
Synopsis: It takes a long time to invalidate a connection to a WLAN AP that is not valid or is out of range
In current scenario the Helix AccessPoint Manager does not catch the error code "KErrWlanNetworkNotFound" coming from Symbian and allows the error to map to Helix error code "HXR_NET_CONNECT" which eventually allows the Helix Client to look for Switching transport.The Switch transport takes a lot of time before giving away the message KErrCouldNotConnect.
This CR corrects this problem by following changes:
1. A new Helix error code is created : HXR_INVALID_ACCESSPOINT .
2. This is mapped to KErrCouldNotConnect.
3. The error code KErrWlanNetworkNotFound is catched appropriately in AccessPoint Manager and is mapped to HXR_INVALID_ACCESSPOINT.
Root Cause of the problem: Implementation
Files Modified:
common/include/hxresult.h
clientapps/symbianMmf/common/hxmmfbasectrl.cpp
client/netwksvc/platform/symbian/hxsymbianapman.cpp
Files Added: None
Image Size and Heap Use impact: None
Module Release testing (STIF) : Done.
Test case(s) Added : N/A
Memory leak check performed : yes. No leak.
Platforms and Profiles Build Verified: helix-client-s60-50-mmf-mdf-dsp
Platforms and Profiles Functionality verified: armv5, winscw
Branch: Head & 210CayS
Details :
Index: hxresult.h
===================================================================
RCS file: /cvsroot/common/include/hxresult.h,v
retrieving revision 1.37.2.10
diff -u -w -r1.37.2.10 hxresult.h
--- hxresult.h 7 Feb 2008 18:21:01 -0000 1.37.2.10
+++ hxresult.h 2 May 2008 15:26:01 -0000
 -228,6 +228,7 
#define HXR_NET_SUSPENDED MAKE_HX_RESULT(1,SS_NET,52) // 80040074
#define HXR_NET_RESOURCES_IN_USE MAKE_HX_RESULT(1,SS_NET,53) // 80040075
#define HXR_ACCESSPOINT_NOT_FOUND MAKE_HX_RESULT(1,SS_NET,54) // 80040076
+#define HXR_INVALID_ACCESSPOINT MAKE_HX_RESULT(1,SS_NET,55) // 80040077
#define HXR_AT_END MAKE_HX_RESULT(0,SS_FIL,0) // 00040080
#define HXR_INVALID_FILE MAKE_HX_RESULT(1,SS_FIL,1) // 80040081
Index: hxmmfbasectrl.cpp
===================================================================
RCS file: /cvsroot/clientapps/symbianMmf/common/hxmmfbasectrl.cpp,v
retrieving revision 1.1.2.39
diff -u -w -r1.1.2.39 hxmmfbasectrl.cpp
--- hxmmfbasectrl.cpp 26 Mar 2008 21:03:31 -0000 1.1.2.39
+++ hxmmfbasectrl.cpp 2 May 2008 15:40:02 -0000
 -106,6 +106,7 
{ HXR_NET_SOCKET_INVALID, KErrCouldNotConnect },
{ HXR_NET_CONNECT, KErrCouldNotConnect },
{ HXR_DNS_RESOLVE_FAILURE, KErrCouldNotConnect },
+ { HXR_INVALID_ACCESSPOINT, KErrCouldNotConnect },
{ HXR_IGNORE, KErrNone },
{ HXR_NOT_INITIALIZED, KErrNotReady },
{ HXR_INVALID_HOST, KErrCouldNotConnect },
Index: hxsymbianapman.cpp
===================================================================
RCS file: /cvsroot/client/netwksvc/platform/symbian/hxsymbianapman.cpp,v
retrieving revision 1.7.2.13
diff -u -w -r1.7.2.13 hxsymbianapman.cpp
--- hxsymbianapman.cpp 30 Jan 2008 19:35:48 -0000 1.7.2.13
+++ hxsymbianapman.cpp 2 May 2008 15:42:33 -0000
 -59,6 +59,7 
#if defined(HELIX_FEATURE_SYMBIAN_MMF) && defined(HELIX_CONFIG_SYMBIAN_PLATFORM_SECURITY)
#include <etelpckt.h>//just for error codes
#include <gsmerror.h>//just for error codes
+#include <wlanerrorcodes.h> //just for error codes
#endif
const UINT32 DefaultNumOfRetries = 1; /* Number of connect retries before
 -568,6 +569,10 
{
status = HXR_ACCESSPOINT_NOT_FOUND;
}
+ else if(aoStatus == KErrWlanNetworkNotFound)
+ {
+ status = HXR_INVALID_ACCESSPOINT;
+ }
else if (aoStatus != KErrNone) // all other errors
{
if ( aoStatus == KErrGsmMMServiceOptionNotSubscribed || // -4161
|
| FW: CR:OVIL-7DPT7U: It takes a long
time to invalidatea connection |
  United States |
2008-05-05 12:28:00 |
Looks good.
=============================================
Eric Hyche (ehyche real.com)
Technical Lead
RealNetworks, Inc.
> -----Original Message-----
> From: client-dev-bounces helixcommunity.org
> [mailto:client-dev-bounces helixcommunity.org] On
Behalf Of
> ext-amit.shivnani nokia.com
> Sent: Monday, May 05, 2008 11:10 AM
> To: client-dev helixcommunity.org;
> nokia-private-dev helixcommunity.org;
> clientapps-dev helixcommunity.org
> Subject: [Client-dev] FW: CR:OVIL-7DPT7U: It takes a
long
> time to invalidatea connection to a WLAN AP that is not
valid
> or is out of range.
>
>
>
> ______________________________________________
> From: Shivnani Amit (EXT-InfoVision-MSW/Dallas)
> Sent: Friday, May 02, 2008 1:25 PM
> To: TP-SP-SWD-MMC-VIDEO-HELIX DG
> Subject: CR:OVIL-7DPT7U: It takes a long time
to
> invalidate a connection to a WLAN AP that is not valid
or is
> out of range.
>
>
> Nokia submits this code under the terms of a
commercial
> contribution agreement with RealNetworks, and I am
authorized
> to contribute this code under said agreement."
>
> Modified by: ext-amit.shivnani nokia.com
>
> Date: 02-May-2008
>
> Project: SymbianMmf_Rel
>
> TSW: OVIL-7DPT7U
>
> Synopsis: It takes a long time to invalidate a
> connection to a WLAN AP that is not valid or is out of
range
>
> In current scenario the Helix AccessPoint Manager does
> not catch the error code
"KErrWlanNetworkNotFound" coming
> from Symbian and allows the error to map to Helix error
code
> "HXR_NET_CONNECT" which eventually allows the
Helix Client to
> look for Switching transport.The Switch transport takes
a lot
> of time before giving away the message
KErrCouldNotConnect.
>
>
> This CR corrects this problem by following changes:
> 1. A new Helix error code is created :
> HXR_INVALID_ACCESSPOINT .
> 2. This is mapped to KErrCouldNotConnect.
> 3. The error code KErrWlanNetworkNotFound is catched
> appropriately in AccessPoint Manager and is mapped to
> HXR_INVALID_ACCESSPOINT.
>
>
> Root Cause of the problem: Implementation
>
>
> Files Modified:
> common/include/hxresult.h
> clientapps/symbianMmf/common/hxmmfbasectrl.cpp
>
client/netwksvc/platform/symbian/hxsymbianapman.cpp
>
>
> Files Added: None
>
>
> Image Size and Heap Use impact: None
>
> Module Release testing (STIF) : Done.
>
> Test case(s) Added : N/A
>
> Memory leak check performed : yes. No leak.
>
> Platforms and Profiles Build Verified:
> helix-client-s60-50-mmf-mdf-dsp
>
> Platforms and Profiles Functionality verified: armv5,
winscw
>
> Branch: Head & 210CayS
>
>
>
> Details :
>
> Index: hxresult.h
>
>
============================================================
=======
> RCS file: /cvsroot/common/include/hxresult.h,v
> retrieving revision 1.37.2.10
> diff -u -w -r1.37.2.10 hxresult.h
> --- hxresult.h 7 Feb 2008 18:21:01 -0000
1.37.2.10
> +++ hxresult.h 2 May 2008 15:26:01 -0000
>  -228,6 +228,7 
> #define HXR_NET_SUSPENDED
> MAKE_HX_RESULT(1,SS_NET,52) // 80040074
> #define HXR_NET_RESOURCES_IN_USE
> MAKE_HX_RESULT(1,SS_NET,53) // 80040075
> #define HXR_ACCESSPOINT_NOT_FOUND
> MAKE_HX_RESULT(1,SS_NET,54)
> // 80040076
>
> +#define HXR_INVALID_ACCESSPOINT
> MAKE_HX_RESULT(1,SS_NET,55)
> // 80040077
>
> #define HXR_AT_END
> MAKE_HX_RESULT(0,SS_FIL,0) // 00040080
> #define HXR_INVALID_FILE
> MAKE_HX_RESULT(1,SS_FIL,1) // 80040081
>
>
> Index: hxmmfbasectrl.cpp
>
>
============================================================
=======
> RCS file:
>
/cvsroot/clientapps/symbianMmf/common/hxmmfbasectrl.cpp,v
> retrieving revision 1.1.2.39
> diff -u -w -r1.1.2.39 hxmmfbasectrl.cpp
> --- hxmmfbasectrl.cpp 26 Mar 2008 21:03:31 -0000
> 1.1.2.39
> +++ hxmmfbasectrl.cpp 2 May 2008 15:40:02 -0000
>  -106,6 +106,7 
> { HXR_NET_SOCKET_INVALID,
> KErrCouldNotConnect },
> { HXR_NET_CONNECT,
> KErrCouldNotConnect },
> { HXR_DNS_RESOLVE_FAILURE,
> KErrCouldNotConnect },
> + { HXR_INVALID_ACCESSPOINT,
> KErrCouldNotConnect },
> { HXR_IGNORE, KErrNone
> },
> { HXR_NOT_INITIALIZED, KErrNotReady
> },
> { HXR_INVALID_HOST,
> KErrCouldNotConnect },
>
>
>
>
> Index: hxsymbianapman.cpp
>
>
============================================================
=======
> RCS file:
>
/cvsroot/client/netwksvc/platform/symbian/hxsymbianapman.cpp
,v
> retrieving revision 1.7.2.13
> diff -u -w -r1.7.2.13 hxsymbianapman.cpp
> --- hxsymbianapman.cpp 30 Jan 2008 19:35:48 -0000
> 1.7.2.13
> +++ hxsymbianapman.cpp 2 May 2008 15:42:33 -0000
>  -59,6 +59,7 
> #if defined(HELIX_FEATURE_SYMBIAN_MMF) &&
> defined(HELIX_CONFIG_SYMBIAN_PLATFORM_SECURITY)
> #include <etelpckt.h>//just for error codes
> #include <gsmerror.h>//just for error codes
> +#include <wlanerrorcodes.h> //just for error
codes
> #endif
>
> const UINT32 DefaultNumOfRetries = 1; /* Number of
> connect retries before
>  -568,6 +569,10 
> {
> status = HXR_ACCESSPOINT_NOT_FOUND;
> }
> + else if(aoStatus == KErrWlanNetworkNotFound)
> + {
> + status = HXR_INVALID_ACCESSPOINT;
> + }
> else if (aoStatus != KErrNone) // all other
errors
> {
> if ( aoStatus ==
> KErrGsmMMServiceOptionNotSubscribed || // -4161
>
>
_______________________________________________
Clientapps-dev mailing list
Clientapps-dev helixcommunity.org
http://lists.helixcommunity.org/mailman/listinfo/
clientapps-dev
|
|
| FW: CR:OVIL-7DPT7U: It takes a long
time to invalidatea connection |

|
2008-05-07 13:57:57 |
The file common/include/hxresult.h has a conflict of error
code sequence
in the 210_cays and head.
In the head , the hxresult.h already has a new error code in
sequence
number 55 :
#define HXR_INCOMPATIBLE_RTSP_SERVER
MAKE_HX_RESULT(1,SS_NET,55)
// 80040077
So I plan to change my error code sequence from -
#define HXR_INVALID_ACCESSPOINT
MAKE_HX_RESULT(1,SS_NET,55)
// 80040077
To -
#define HXR_INVALID_ACCESSPOINT
MAKE_HX_RESULT(1,SS_NET,56)
// 80040078
in the head .
And keep it to
#define HXR_INVALID_ACCESSPOINT
MAKE_HX_RESULT(1,SS_NET,55)
// 80040077
in the 210Cays .
Please let me know if someone has any issuses with that by
the end of
the day.
Regards
Amit
>> Nokia submits this code under the terms of a
commercial
>> contribution agreement with RealNetworks, and I am
authorized
>> to contribute this code under said
agreement."
>>
>> Modified by: ext-amit.shivnani nokia.com
>>
>> Date: 02-May-2008
>>
>> Project: SymbianMmf_Rel
>>
>> TSW: OVIL-7DPT7U
>>
>> Synopsis: It takes a long time to invalidate a
>> connection to a WLAN AP that is not valid or is out
of range
>>
>> In current scenario the Helix AccessPoint Manager
does
>> not catch the error code
"KErrWlanNetworkNotFound" coming
>> from Symbian and allows the error to map to Helix
error code
>> "HXR_NET_CONNECT" which eventually allows
the Helix Client to
>> look for Switching transport.The Switch transport
takes a lot
>> of time before giving away the message
KErrCouldNotConnect.
>>
>>
>> This CR corrects this problem by following
changes:
>> 1. A new Helix error code is created :
>> HXR_INVALID_ACCESSPOINT .
>> 2. This is mapped to KErrCouldNotConnect.
>> 3. The error code KErrWlanNetworkNotFound is
catched
>> appropriately in AccessPoint Manager and is mapped
to
>> HXR_INVALID_ACCESSPOINT.
>>
>>
>> Root Cause of the problem: Implementation
>>
>>
>> Files Modified:
>> common/include/hxresult.h
>>
clientapps/symbianMmf/common/hxmmfbasectrl.cpp
>>
client/netwksvc/platform/symbian/hxsymbianapman.cpp
>>
>>
>> Files Added: None
>>
>>
>> Image Size and Heap Use impact: None
>>
>> Module Release testing (STIF) : Done.
>>
>> Test case(s) Added : N/A
>>
>> Memory leak check performed : yes. No leak.
>>
>> Platforms and Profiles Build Verified:
>> helix-client-s60-50-mmf-mdf-dsp
>>
>> Platforms and Profiles Functionality verified:
armv5, winscw
>>
>> Branch: Head & 210CayS
>>
>>
>>
>> Details :
>>
>> Index: hxresult.h
>>
>>
============================================================
=======
>> RCS file: /cvsroot/common/include/hxresult.h,v
>> retrieving revision 1.37.2.10
>> diff -u -w -r1.37.2.10 hxresult.h
>> --- hxresult.h 7 Feb 2008 18:21:01 -0000
1.37.2.10
>> +++ hxresult.h 2 May 2008 15:26:01 -0000
>>  -228,6 +228,7 
>> #define HXR_NET_SUSPENDED
>> MAKE_HX_RESULT(1,SS_NET,52) //
80040074
>> #define HXR_NET_RESOURCES_IN_USE
>> MAKE_HX_RESULT(1,SS_NET,53) //
80040075
>> #define HXR_ACCESSPOINT_NOT_FOUND
>> MAKE_HX_RESULT(1,SS_NET,54)
>> // 80040076
>>
>> +#define HXR_INVALID_ACCESSPOINT
>> MAKE_HX_RESULT(1,SS_NET,55)
>> // 80040077
>>
>> #define HXR_AT_END
>> MAKE_HX_RESULT(0,SS_FIL,0) //
00040080
>> #define HXR_INVALID_FILE
>> MAKE_HX_RESULT(1,SS_FIL,1) //
80040081
>>
>>
>> Index: hxmmfbasectrl.cpp
>>
>>
============================================================
=======
>> RCS file:
>>
/cvsroot/clientapps/symbianMmf/common/hxmmfbasectrl.cpp,v
>> retrieving revision 1.1.2.39
>> diff -u -w -r1.1.2.39 hxmmfbasectrl.cpp
>> --- hxmmfbasectrl.cpp 26 Mar 2008 21:03:31 -0000
>> 1.1.2.39
>> +++ hxmmfbasectrl.cpp 2 May 2008 15:40:02 -0000
>>  -106,6 +106,7 
>> { HXR_NET_SOCKET_INVALID,
>> KErrCouldNotConnect },
>> { HXR_NET_CONNECT,
>> KErrCouldNotConnect },
>> { HXR_DNS_RESOLVE_FAILURE,
>> KErrCouldNotConnect },
>> + { HXR_INVALID_ACCESSPOINT,
>> KErrCouldNotConnect },
>> { HXR_IGNORE, KErrNone
>> },
>> { HXR_NOT_INITIALIZED,
KErrNotReady
>> },
>> { HXR_INVALID_HOST,
>> KErrCouldNotConnect },
>>
>>
>>
>>
>> Index: hxsymbianapman.cpp
>>
>>
============================================================
=======
>> RCS file:
>>
/cvsroot/client/netwksvc/platform/symbian/hxsymbianapman.cpp
,v
>> retrieving revision 1.7.2.13
>> diff -u -w -r1.7.2.13 hxsymbianapman.cpp
>> --- hxsymbianapman.cpp 30 Jan 2008 19:35:48 -0000
>> 1.7.2.13
>> +++ hxsymbianapman.cpp 2 May 2008 15:42:33 -0000
>>  -59,6 +59,7 
>> #if defined(HELIX_FEATURE_SYMBIAN_MMF) &&
>> defined(HELIX_CONFIG_SYMBIAN_PLATFORM_SECURITY)
>> #include <etelpckt.h>//just for error codes
>> #include <gsmerror.h>//just for error codes
>> +#include <wlanerrorcodes.h> //just for
error codes
>> #endif
>>
>> const UINT32 DefaultNumOfRetries = 1; /* Number
of
>> connect retries before
>>  -568,6 +569,10 
>> {
>> status = HXR_ACCESSPOINT_NOT_FOUND;
>> }
>> + else if(aoStatus == KErrWlanNetworkNotFound)
>> + {
>> + status = HXR_INVALID_ACCESSPOINT;
>> + }
>> else if (aoStatus != KErrNone) // all other
errors
>> {
>> if ( aoStatus ==
>> KErrGsmMMServiceOptionNotSubscribed || //
-4161
>>
>>
>
>
_______________________________________________
Clientapps-dev mailing list
Clientapps-dev helixcommunity.org
http://lists.helixcommunity.org/mailman/listinfo/
clientapps-dev
|
|
| FW: CR:OVIL-7DPT7U: It takes along time
to |
  United States |
2008-05-08 09:55:14 |
Is there any way to resolve the error definitions
so that they are the same on HEAD and Cay210S?
If so, I think we should try to get codes the
same on both branches.
Eric
=============================================
Eric Hyche (ehyche real.com)
Technical Lead
RealNetworks, Inc.
> -----Original Message-----
> From: nokia-private-dev-bounces helixcommunity.org
> [mailto:nokia-private-dev-bounces helixcommunity.org] On
> Behalf Of ext-amit.shivnani nokia.com
> Sent: Wednesday, May 07, 2008 2:58 PM
> To: client-dev helixcommunity.org;
> nokia-private-dev helixcommunity.org;
> clientapps-dev helixcommunity.org
> Subject: [Nokia-private-dev] RE: [Client-dev] FW:
> CR:OVIL-7DPT7U: It takes along time to invalidatea
connection
> to a WLAN AP that is notvalid or is out of range.
>
>
> The file common/include/hxresult.h has a conflict of
error
> code sequence
> in the 210_cays and head.
>
> In the head , the hxresult.h already has a new error
code in sequence
> number 55 :
>
> #define HXR_INCOMPATIBLE_RTSP_SERVER
MAKE_HX_RESULT(1,SS_NET,55)
> // 80040077
>
> So I plan to change my error code sequence from -
>
> #define HXR_INVALID_ACCESSPOINT
MAKE_HX_RESULT(1,SS_NET,55)
> // 80040077
>
> To -
>
> #define HXR_INVALID_ACCESSPOINT
MAKE_HX_RESULT(1,SS_NET,56)
> // 80040078
>
> in the head .
>
> And keep it to
> #define HXR_INVALID_ACCESSPOINT
MAKE_HX_RESULT(1,SS_NET,55)
> // 80040077
>
> in the 210Cays .
>
> Please let me know if someone has any issuses with that
by the end of
> the day.
>
> Regards
> Amit
>
> >> Nokia submits this code under the terms of a
commercial
> >> contribution agreement with RealNetworks, and
I am authorized
> >> to contribute this code under said
agreement."
> >>
> >> Modified by: ext-amit.shivnani nokia.com
> >>
> >> Date: 02-May-2008
> >>
> >> Project: SymbianMmf_Rel
> >>
> >> TSW: OVIL-7DPT7U
> >>
> >> Synopsis: It takes a long time to invalidate
a
> >> connection to a WLAN AP that is not valid or
is out of range
> >>
> >> In current scenario the Helix AccessPoint
Manager does
> >> not catch the error code
"KErrWlanNetworkNotFound" coming
> >> from Symbian and allows the error to map to
Helix error code
> >> "HXR_NET_CONNECT" which eventually
allows the Helix Client to
> >> look for Switching transport.The Switch
transport takes a lot
> >> of time before giving away the message
KErrCouldNotConnect.
> >>
> >>
> >> This CR corrects this problem by following
changes:
> >> 1. A new Helix error code is created :
> >> HXR_INVALID_ACCESSPOINT .
> >> 2. This is mapped to KErrCouldNotConnect.
> >> 3. The error code KErrWlanNetworkNotFound is
catched
> >> appropriately in AccessPoint Manager and is
mapped to
> >> HXR_INVALID_ACCESSPOINT.
> >>
> >>
> >> Root Cause of the problem: Implementation
> >>
> >>
> >> Files Modified:
> >> common/include/hxresult.h
> >>
clientapps/symbianMmf/common/hxmmfbasectrl.cpp
> >>
client/netwksvc/platform/symbian/hxsymbianapman.cpp
> >>
> >>
> >> Files Added: None
> >>
> >>
> >> Image Size and Heap Use impact: None
> >>
> >> Module Release testing (STIF) : Done.
> >>
> >> Test case(s) Added : N/A
> >>
> >> Memory leak check performed : yes. No leak.
> >>
> >> Platforms and Profiles Build Verified:
> >> helix-client-s60-50-mmf-mdf-dsp
> >>
> >> Platforms and Profiles Functionality
verified: armv5, winscw
> >>
> >> Branch: Head & 210CayS
> >>
> >>
> >>
> >> Details :
> >>
> >> Index: hxresult.h
> >>
> >>
>
============================================================
=======
> >> RCS file:
/cvsroot/common/include/hxresult.h,v
> >> retrieving revision 1.37.2.10
> >> diff -u -w -r1.37.2.10 hxresult.h
> >> --- hxresult.h 7 Feb 2008 18:21:01 -0000
1.37.2.10
> >> +++ hxresult.h 2 May 2008 15:26:01 -0000
> >>  -228,6 +228,7 
> >> #define HXR_NET_SUSPENDED
> >> MAKE_HX_RESULT(1,SS_NET,52) //
80040074
> >> #define HXR_NET_RESOURCES_IN_USE
> >> MAKE_HX_RESULT(1,SS_NET,53) //
80040075
> >> #define HXR_ACCESSPOINT_NOT_FOUND
> >> MAKE_HX_RESULT(1,SS_NET,54)
> >> // 80040076
> >>
> >> +#define HXR_INVALID_ACCESSPOINT
> >> MAKE_HX_RESULT(1,SS_NET,55)
> >> // 80040077
> >>
> >> #define HXR_AT_END
> >> MAKE_HX_RESULT(0,SS_FIL,0) //
00040080
> >> #define HXR_INVALID_FILE
> >> MAKE_HX_RESULT(1,SS_FIL,1) //
80040081
> >>
> >>
> >> Index: hxmmfbasectrl.cpp
> >>
> >>
>
============================================================
=======
> >> RCS file:
> >>
/cvsroot/clientapps/symbianMmf/common/hxmmfbasectrl.cpp,v
> >> retrieving revision 1.1.2.39
> >> diff -u -w -r1.1.2.39 hxmmfbasectrl.cpp
> >> --- hxmmfbasectrl.cpp 26 Mar 2008 21:03:31
-0000
> >> 1.1.2.39
> >> +++ hxmmfbasectrl.cpp 2 May 2008 15:40:02
-0000
> >>  -106,6 +106,7 
> >> { HXR_NET_SOCKET_INVALID,
> >> KErrCouldNotConnect },
> >> { HXR_NET_CONNECT,
> >> KErrCouldNotConnect },
> >> { HXR_DNS_RESOLVE_FAILURE,
> >> KErrCouldNotConnect },
> >> + { HXR_INVALID_ACCESSPOINT,
> >> KErrCouldNotConnect },
> >> { HXR_IGNORE,
KErrNone
> >> },
> >> { HXR_NOT_INITIALIZED,
KErrNotReady
> >> },
> >> { HXR_INVALID_HOST,
> >> KErrCouldNotConnect },
> >>
> >>
> >>
> >>
> >> Index: hxsymbianapman.cpp
> >>
> >>
>
============================================================
=======
> >> RCS file:
> >>
/cvsroot/client/netwksvc/platform/symbian/hxsymbianapman.cpp
,v
> >> retrieving revision 1.7.2.13
> >> diff -u -w -r1.7.2.13 hxsymbianapman.cpp
> >> --- hxsymbianapman.cpp 30 Jan 2008 19:35:48
-0000
> >> 1.7.2.13
> >> +++ hxsymbianapman.cpp 2 May 2008 15:42:33
-0000
> >>  -59,6 +59,7 
> >> #if defined(HELIX_FEATURE_SYMBIAN_MMF)
&&
> >>
defined(HELIX_CONFIG_SYMBIAN_PLATFORM_SECURITY)
> >> #include <etelpckt.h>//just for error
codes
> >> #include <gsmerror.h>//just for error
codes
> >> +#include <wlanerrorcodes.h> //just for
error codes
> >> #endif
> >>
> >> const UINT32 DefaultNumOfRetries = 1; /*
Number of
> >> connect retries before
> >>  -568,6 +569,10 
> >> {
> >> status = HXR_ACCESSPOINT_NOT_FOUND;
> >> }
> >> + else if(aoStatus ==
KErrWlanNetworkNotFound)
> >> + {
> >> + status = HXR_INVALID_ACCESSPOINT;
> >> + }
> >> else if (aoStatus != KErrNone) // all
other errors
> >> {
> >> if ( aoStatus ==
> >> KErrGsmMMServiceOptionNotSubscribed ||
// -4161
> >>
> >>
> >
> >
>
> _______________________________________________
> Nokia-private-dev mailing list
> Nokia-private-dev helixcommunity.org
> http://lists.helixcommunity.org/mailman/listin
fo/nokia-private-dev
>
_______________________________________________
Clientapps-dev mailing list
Clientapps-dev helixcommunity.org
http://lists.helixcommunity.org/mailman/listinfo/
clientapps-dev
|
|
[1-4]
|
|