| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Reviewed-by: Trust Me
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
1. QNetworkSession being deleted from the closed signal caused data
abort or E32User-CBase 49 panics. (both observed)
2. Potential E32User-CBase 46 panic in
ConnectionProgressNotifier::StartNotifications()
Reviewed-by: Aaron Tunney
Reviewed-By: Markus Goetz
Task-Number: QTBUG-17196
(cherry picked from commit 8fe811e14b6db6a9637a5bf6d276613786291762)
|
|
|
|
| |
(cherry picked from commit 8eab49de0548363b18c6e2c7b4ff4a8b722992d6)
|
|
|
|
|
| |
Reviewed-by: Trust Me
(cherry picked from commit ac5c099cc3c5b8c7eec7a49fdeb8a21037230350)
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The access point scanner cancels itself in the destructor.
This requires the handle to be valid, but it was closed in the symbian
engine destructor immediately before deleting the AP scanner.
Because of the way symbian active objects work, the crashing function
is only called if there was an asynchronous request in progress.
So it could be missed in cases where the scan completes faster than the
test case.
Task-number: QTBUG-16484
Reviewed-by: Markus Goetz
|
| |
|
|
|
|
|
|
|
| |
When parsing a new connection an access point with the same SSID may not
have been previously seen.
Task-number: QTBUG-15276
|
|
|
|
|
|
|
|
|
|
|
|
| |
In early system startup applications may try to use ICD before it is
contactable. Ensure that the connection to ICD is established before all
calls are made.
If ICD is still not contactable QDBusServiceWatcher is used to monitor
registration of the com.nokia.icd2 address and reconnection is attempted
once ICD is started.
Task-number: Maemo 199755
|
|
|
|
| |
Fixes: NB#208617 - QtProxyFactory does not return correct (any) proxy data
|
|
|
|
|
|
|
| |
Fixes: NB#194509 - Network access from a Qt app makes dbus daemon
consume tons of cpu
Task-number: QT-4220
|
| |
|
|
|
|
|
| |
This variable cannot be dereferenced when it's zero, but let's silence
the compiler warning (GCC 4.4 on ARM).
|
|
|
|
|
|
|
| |
Just add some Q_UNUSED for parameters or remove the variable we don't
need for the others.
Reviewed-by: Trust Me
|
| |
|
|\ |
|
| |
| |
| |
| |
| |
| |
| | |
QT-4155 bug.
Canceling Network Session before canceling connection notifier
notifications causes a call to an invalid RConnection instance.
Fix: CanceL Network session after canceling notifications.
|
|/
|
|
|
|
|
|
| |
Fixing the initial problem of this error opened up a possibility to
start a new WLAN scan while there was one still ongoing. This caused
a crash.
Task-number: QT-3996
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1:
remove pointless assignment of deprecated variable
fix tst_headers
Fixed a shell syntax error in configure
Clear X11 structure before use
Make operator QRectF const
Fix GC-related crash in QScriptValue::setData()
get rid of dependency on QtGui
Removed implicity QtGui linking from icd.pro as it is not needed.
DFB: Make sure QPixmap::hasAlpha is respected
fix build on mingw
Fix some painting issues in QDirectFBPaintEngine
QNAM: Do not need QNetworkSession in AlwaysCache load mode
Don't crash if QScriptClass property getter returns an invalid value
QNAM: Remove dead waitForUpstreamBytesWritten() code
QNAM: Remove dead waitForDownstreamReadyRead() code
fix memleak in test
|
| |\ |
|
| | |\ |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Task-number: QTBUG-15059
Reviewed-by: trustme
|
| | |/
| |/|
| | |
| | | |
Task-number: QTBUG-15059
|
|/ / |
|
| |
| |
| |
| |
| | |
Removed implicit QtGui linking from qsymbianbearer plugin as it
is not needed.
|
| |
| |
| |
| |
| | |
Don't try to open the network session if there is already an in progress
open request.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
ICD DBus signals always come in via the main thread. During synchronous
dispatch these signals were not being emitted when expected because no
event loop is running in the destination thread. Fixed by added a call
to QCoreApplication::sendPostedEvents(object, QEvent::MetaCall) in the
synchronous dispatch loop.
Task-number: QTBUG-15004
|
| |
| |
| |
| | |
Reviewed-by: trust me
|
| |
| |
| |
| |
| |
| |
| |
| | |
This fixes the case where the connection threads are never stopped until
desctuctor.
Task-number: QTBUG-14836
Reviewed-by: trust me
|
|/ |
|
|
|
|
|
|
|
| |
The active object made a request before it was set as active.
Task-number: QT-3996
Written-by: Perttu Pohjonen <perttu.pohjonen@nokia.com>
|
| |
|
|
|
|
|
|
|
| |
Currently it emits InvalidConfigurationError
Task-number: QTMOBILITY-514
Reviewed-by: Aaron McCarthy
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
The use of libconninet caused Qt to have a cyclic build dependency.
Which was solved by embedding a copy as a 3rd party library. Maemo has
since donated the libconninet code to Qt because (1) it was a private
Maemo API and (2) the Qt ICD plugin is the only user of the library.
This commit moves the relevent code from src/3rdparty/libconninet to
src/plugins/bearer/icd and deletes the rest.
Task-number: QT-3893
|
| |
|
|
|
|
|
|
| |
the refcounting to work in ICD.
Fixes NB#188145 - Network interface doesn't go down after last client disconnects
|
|
|
|
|
|
|
|
|
| |
Symbian3 and later builds are not compatible with pre-Symbian3 phones
anyway, so no need to build and deploy older version plugins when
building for Symbian3 or later.
Task-number: QT-3949
Reviewed-by: Janne Koskinen
|
|
|
|
|
|
|
|
|
| |
Checking for existence of files does not work in clean platform builds,
so check the S60_VERSION instead, which can be explicitly set by
those builds to correct value.
Task-number: QT-3949
Reviewed-by: axis
|
|
|
|
| |
Task-number: QTBUG-13519
|
| |
|
| |
|
| |
|
|
|
|
| |
Task-number: QTBUG-13335
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| | |
SymbianEngine::updateConfigurationsL cannot be called from a
non-main thread as it uses Symbian resources not shared between
threads.
Task-number: QTBUG-13064
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This reverts commit bce4c42a3d0c7d24009230e09aa58db60db39d40.
This change did not have the desired effect on Symbian versions prior
to Symbian^3.
Conflicts:
src/plugins/bearer/symbian/qnetworksession_impl.cpp
|
| |
| |
| |
| |
| |
| |
| | |
RCmManager is not sharable between threads, use a function local
instance instead.
Task-number: QTBUG-13064
|
|\ \
| |/ |
|
| |
| |
| |
| |
| |
| |
| | |
If setdefaultif(0) or unsetdefaultif() is called all sockets belonging
to the current process are closed by OpenC.
Task-number: QTBUG-12686
|
| |
| |
| |
| |
| |
| | |
disconnection.
Fixes: NB#185586 - QNetworkSession::closed() signal never sent when QNetworkSession::close() is called.
|