supl/locationomasuplprotocolhandler/protocolhandlerver1/src/epos_comasuplfallbackhandler.cpp
equal
deleted
inserted
replaced
802 PrintSLPList(); |
802 PrintSLPList(); |
803 |
803 |
804 } |
804 } |
805 |
805 |
806 // ----------------------------------------------------------------------------- |
806 // ----------------------------------------------------------------------------- |
|
807 // COMASuplFallBackHandler::UpdateSLPListWithAccessPoint |
|
808 // ----------------------------------------------------------------------------- |
|
809 // |
|
810 void COMASuplFallBackHandler::UpdateSLPListWithAccessPoint(const TDesC& aIapName) |
|
811 { |
|
812 iTrace->Trace(_L("UpdateSLPListWithAccessPoint Start"),KTraceFileName, __LINE__); |
|
813 |
|
814 TInt TotalServers = iSLPList->Count(); |
|
815 TInt cnt = 0; |
|
816 while( cnt < TotalServers ) |
|
817 { |
|
818 if (((*iSLPList)[cnt].iIapName.Length() == 0)) ; |
|
819 { |
|
820 (*iSLPList)[cnt].iIapName.Copy(aIapName); |
|
821 } |
|
822 cnt++; |
|
823 } |
|
824 |
|
825 iTrace->Trace(_L("UpdateSLPListWithAccessPoint End"),KTraceFileName, __LINE__); |
|
826 |
|
827 PrintSLPList(); |
|
828 |
|
829 } |
|
830 |
|
831 // ----------------------------------------------------------------------------- |
807 // COMASuplFallBackHandler::GetFirstEnabledSLPL |
832 // COMASuplFallBackHandler::GetFirstEnabledSLPL |
808 // ----------------------------------------------------------------------------- |
833 // ----------------------------------------------------------------------------- |
809 // |
834 // |
810 void COMASuplFallBackHandler::GetFirstEnabledSLPL() |
835 void COMASuplFallBackHandler::GetFirstEnabledSLPL() |
811 { |
836 { |