QNetworkConfigurationManager¶
The
QNetworkConfigurationManager
class manages the network configurations provided by the system. More…
New in version 4.7.
Synopsis¶
Functions¶
def
allConfigurations
([flags=QNetworkConfiguration.StateFlags()])def
capabilities
()def
configurationFromIdentifier
(identifier)def
defaultConfiguration
()def
isOnline
()
Slots¶
def
updateConfigurations
()
Signals¶
def
configurationAdded
(config)def
configurationChanged
(config)def
configurationRemoved
(config)def
onlineStateChanged
(isOnline)def
updateCompleted
()
Detailed Description¶
QNetworkConfigurationManager
provides access to the network configurations known to the system and enables applications to detect the system capabilities (with regards to network sessions) at runtime.A
QNetworkConfiguration
abstracts a set of configuration options describing how a network interface has to be configured to connect to a particular target network.QNetworkConfigurationManager
maintains and updates the global list of QNetworkConfigurations. Applications can access and filter this list viaallConfigurations()
. If a new configuration is added or an existing one is removed or changed theconfigurationAdded()
,configurationRemoved()
andconfigurationChanged()
signals are emitted respectively.The
defaultConfiguration()
can be used when intending to immediately create a new network session without caring about the particular configuration. It returns aDiscovered
configuration. If there are not any discovered ones an invalid configuration is returned.Some configuration updates may require some time to perform updates. A WLAN scan is such an example. Unless the platform performs internal updates it may be required to manually trigger configuration updates via
updateConfigurations()
. The completion of the update process is indicated by emitting theupdateCompleted()
signal. The update process ensures that every existingQNetworkConfiguration
instance is updated. There is no need to ask for a renewed configuration list viaallConfigurations()
.See also
- class PySide2.QtNetwork.QNetworkConfigurationManager([parent=None])¶
- param parent:
Constructs a
QNetworkConfigurationManager
with the givenparent
.Note that to ensure a valid list of current configurations immediately available, updating is done during construction which causes some delay.
- PySide2.QtNetwork.QNetworkConfigurationManager.Capability¶
Specifies the system capabilities of the bearer API. The possible values are:
Constant
Description
QNetworkConfigurationManager.CanStartAndStopInterfaces
Network sessions and their underlying access points can be started and stopped. If this flag is not set
QNetworkSession
can only monitor but not influence the state of access points. On some platforms this feature may require elevated user permissions. This option is platform specific and may not always be available.QNetworkConfigurationManager.DirectConnectionRouting
Network sessions and their sockets can be bound to a particular network interface. Any packet that passes through the socket goes to the specified network interface and thus disregards standard routing table entries. This may be useful when two interfaces can reach overlapping IP ranges or an application has specific needs in regards to target networks. This option is platform specific and may not always be available.
QNetworkConfigurationManager.SystemSessionSupport
If this flag is set the underlying platform ensures that a network interface is not shut down until the last network session has been
closed()
. This works across multiple processes. If the platform session support is missing this API can only ensure the above behavior for network sessions within the same process. In general mobile platforms have such support whereas most desktop platform lack this capability.QNetworkConfigurationManager.ApplicationLevelRoaming
The system gives applications control over the systems roaming behavior. Applications can initiate roaming (in case the current link is not suitable) and are consulted if the system has identified a more suitable access point.
QNetworkConfigurationManager.ForcedRoaming
The system disconnects an existing access point and reconnects via a more suitable one. The application does not have any control over this process and has to reconnect its active sockets.
QNetworkConfigurationManager.DataStatistics
If this flag is set
QNetworkSession
can provide statistics about transmitted and received data.QNetworkConfigurationManager.NetworkSessionRequired
If this flag is set the platform requires that a network session is created before network operations can be performed.
New in version 4.7.
- PySide2.QtNetwork.QNetworkConfigurationManager.allConfigurations([flags=QNetworkConfiguration.StateFlags()])¶
- Parameters:
flags –
StateFlags
- Return type:
Returns the list of configurations which comply with the given
filter
.By default this function returns all (defined and undefined) configurations.
A wireless network with a particular SSID may only be accessible in a certain area despite the fact that the system has a valid configuration for it. Therefore the filter flag may be used to limit the list to discovered and possibly connected configurations only.
If
filter
is set to zero this function returns all possible configurations.Note that this function returns the states for all configurations as they are known at the time of this function call. If for instance a configuration of type WLAN is defined the system may have to perform a WLAN scan in order to determine whether it is actually available. To obtain the most accurate state
updateConfigurations()
should be used to update each configuration’s state. Note that such an update may require some time. It’s completion is signalled byupdateCompleted()
. In the absence of a configuration update this function returns the best estimate at the time of the call. Therefore, if WLAN configurations are of interest, it is recommended thatupdateConfigurations()
is called once afterQNetworkConfigurationManager
instantiation (WLAN scans are too time consuming to perform in constructor). After this the data is kept automatically up-to-date as the system reports any changes.
- PySide2.QtNetwork.QNetworkConfigurationManager.capabilities()¶
- Return type:
Capabilities
Returns the capabilities supported by the current platform.
- PySide2.QtNetwork.QNetworkConfigurationManager.configurationAdded(config)¶
- Parameters:
- PySide2.QtNetwork.QNetworkConfigurationManager.configurationChanged(config)¶
- Parameters:
- PySide2.QtNetwork.QNetworkConfigurationManager.configurationFromIdentifier(identifier)¶
- Parameters:
identifier – str
- Return type:
Returns the
QNetworkConfiguration
foridentifier
; otherwise returns an invalidQNetworkConfiguration
.See also
- PySide2.QtNetwork.QNetworkConfigurationManager.configurationRemoved(config)¶
- Parameters:
- PySide2.QtNetwork.QNetworkConfigurationManager.defaultConfiguration()¶
- Return type:
Returns the default configuration to be used. This function always returns a discovered configuration; otherwise an invalid configuration.
In some cases it may be required to call
updateConfigurations()
and wait for theupdateCompleted()
signal before calling this function.See also
- PySide2.QtNetwork.QNetworkConfigurationManager.isOnline()¶
- Return type:
bool
Returns
true
if the system is considered to be connected to another device via an active network interface; otherwise returnsfalse
.This is equivalent to the following code snippet:
mgr = QNetworkConfigurationManager() activeConfigs = mgr.allConfigurations(QNetworkConfiguration.Active) if activeConfigs: assert(mgr.isOnline()) else: assert(not mgr.isOnline())
See also
- PySide2.QtNetwork.QNetworkConfigurationManager.onlineStateChanged(isOnline)¶
- Parameters:
isOnline – bool
- PySide2.QtNetwork.QNetworkConfigurationManager.updateCompleted()¶
- PySide2.QtNetwork.QNetworkConfigurationManager.updateConfigurations()¶
Initiates an update of all configurations. This may be used to initiate WLAN scans or other time consuming updates which may be required to obtain the correct state for configurations.
This call is asynchronous. On completion of this update the
updateCompleted()
signal is emitted. If new configurations are discovered or old ones were removed or changed the update process may trigger the emission of one or multipleconfigurationAdded()
,configurationRemoved()
andconfigurationChanged()
signals.If a configuration state changes as a result of this update all existing
QNetworkConfiguration
instances are updated automatically.See also
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.