summaryrefslogtreecommitdiffstats
path: root/examples/network/ftp/sym_iap_util.h
Commit message (Collapse)AuthorAgeFilesLines
* Symbian fix: rename examples ftp and musicplayer to start with q.Frans Englich2009-10-091-510/+0
| | | | | | | | | | | | | | | | Symbian already has the executables musicplayer.exe, mediaplayer.exe and ftp.exe, with the result that we overwrite them with Qt. We solve this by renaming the examples, and do it not only on Symbian, such that Qt remains consistent across platforms. This was previously partly done for mediaplayer. The folder name needs to be consistent with the executable, for qtdemo to work. Done jointly with Alessandro. Task-number: QTBUG-4743 Reviewed-by: Alessandro Portale Reviewed-by: Frans Englich
* Update license headers again.Jason McDonald2009-09-091-4/+4
| | | | Reviewed-by: Trust Me
* Update tech preview license header for files that are new in 4.6.Jason McDonald2009-08-311-13/+13
| | | | Reviewed-by: Trust Me
* Changed names and URLs to reflect name change.axis2009-08-191-1/+1
| | | | RevBy: Trust me
* Update license headers according to commit 858c70f768e.axis2009-08-061-2/+2
| | | | RevBy: Trust me
* 'Trailing whitespace' and 'blank line' fixes for demos and examplesJanne Anttila2009-08-041-1/+1
|
* Adding some interesting functions that help findingAleksandar Sasha Babic2009-07-271-4/+196
| | | | | | | | | info about network interfaces and network routes. Can be of broader interest. "By seeking and blundering we learn." Johann Wolfgang Von Goethe (1749 - 1832)
* Forgot variable definitioin.Aleksandar Sasha Babic2009-07-061-1/+2
|
* Commenting some debug printf(...).Aleksandar Sasha Babic2009-07-061-6/+11
|
* Better strategy to use/select deafult IAP:Aleksandar Sasha Babic2009-07-061-78/+171
| | | | | | | | | | 1. Check if there is active connection to use. 2. Look in QSettings for previously used IAP names. 3. Offer native Symbian dialog to select IAP. Note: Best results are achived if IAP have been already created using proper means on their devices. Then correct IAP name string will be returned from selection dialog.
* We can store IAP selections in QSettings.Aleksandar Sasha Babic2009-07-041-4/+81
| | | | Might be usefull for later.
* TCommDbPrefs removed as they don't help for 3.1 FP1 devices(N95).Aleksandar Sasha Babic2009-07-031-8/+3
| | | | | | The access point will not be saved, it didn't exist previously. Good news is that access point will be saved on 3.2 and newer, even without prefs.
* By using TCommDbConnPref we are able toAleksandar Sasha Babic2009-07-011-1/+5
| | | | | | | create & save IAP entry. Before, we would create temporary one and we would have to for example enter again and again WLAN pre-shared key.
* In loop have to close/reopen connectionAleksandar Sasha Babic2009-07-011-2/+5
| | | | after each RConnection::Attac(...) call.
* If branch when active connection not found was misplaced.Aleksandar Sasha Babic2009-07-011-20/+40
|
* RConnectionManager is not used any more.Aleksandar Sasha Babic2009-06-301-40/+29
| | | | | We dont need to link agains 'connmon' library any more. With this we depend only on Symbina and not S60 (Avkon).
* The native Symbian code that helps to select and set default IAPAleksandar Sasha Babic2009-06-181-0/+131
has been moved to separate header. This should make the code shareable among other examples. The location of the header is not perfect. Unfortunately, there is no shared include area for Qt examples. The proper way woud be to have proper API that manages IAP.