Top |
guint | client-cid | Read / Write |
QmiDevice * | client-device | Read / Write |
QmiService | client-service | Read / Write |
guint | client-version-major | Read / Write |
guint | client-version-minor | Read / Write |
#define | QMI_CID_NONE |
#define | QMI_CID_BROADCAST |
#define | QMI_CLIENT_DEVICE |
#define | QMI_CLIENT_SERVICE |
#define | QMI_CLIENT_CID |
#define | QMI_CLIENT_VERSION_MAJOR |
#define | QMI_CLIENT_VERSION_MINOR |
struct | QmiClient |
GObject ╰── QmiClient ├── QmiClientDms ├── QmiClientNas ├── QmiClientOma ├── QmiClientPbm ├── QmiClientPdc ├── QmiClientPds ├── QmiClientUim ├── QmiClientVoice ├── QmiClientWda ├── QmiClientWds ╰── QmiClientWms
QmiClient is a generic type representing a QMI client for any kind of QmiService.
These objects are created by a QmiDevice with qmi_device_allocate_client()
,
and before completely disposing them qmi_device_release_client()
needs to be
called in order to release the unique client ID reserved.
GObject *
qmi_client_get_device (QmiClient *self
);
Get the QmiDevice associated with this QmiClient.
Since: 1.0
GObject *
qmi_client_peek_device (QmiClient *self
);
Get the QmiDevice associated with this QmiClient, without increasing the reference count on the returned object.
Since: 1.0
QmiService
qmi_client_get_service (QmiClient *self
);
Get the service being used by this QmiClient.
Since: 1.0
guint8
qmi_client_get_cid (QmiClient *self
);
Get the client ID of this QmiClient.
Since: 1.0
gboolean qmi_client_get_version (QmiClient *self
,guint *major
,guint *minor
);
Get the version of the service handled by this QmiClient.
self |
||
major |
placeholder for the output major version. |
|
minor |
placeholder for the output minor version. |
Since: 1.0
gboolean qmi_client_check_version (QmiClient *self
,guint major
,guint minor
);
Checks if the version of the service handled by this QmiClient is greater or equal than the given version.
Since: 1.0
#define QMI_CID_NONE 0x00
A symbol specifying a special CID value that references no CID.
Since: 1.0
#define QMI_CLIENT_DEVICE "client-device"
Symbol defining the “client-device” property.
Since: 1.0
#define QMI_CLIENT_SERVICE "client-service"
Symbol defining the “client-service” property.
Since: 1.0
#define QMI_CLIENT_CID "client-cid"
Symbol defining the “client-cid” property.
Since: 1.0
#define QMI_CLIENT_VERSION_MAJOR "client-version-major"
Symbol defining the “client-version-major” property.
Since: 1.0
#define QMI_CLIENT_VERSION_MINOR "client-version-minor"
Symbol defining the “client-version-minor” property.
Since: 1.0
“client-cid”
property“client-cid” guint
ID of the client registered into the QMI device.
Flags: Read / Write
Allowed values: <= 255
Default value: 0
Since: 1.0
“client-device”
property“client-device” QmiDevice *
The QMI device.
Flags: Read / Write
Since: 1.0
“client-service”
property“client-service” QmiService
QMI service this client is using.
Flags: Read / Write
Default value: QMI_SERVICE_UNKNOWN
Since: 1.0
“client-version-major”
property“client-version-major” guint
Major version of the service handled by this client.
Flags: Read / Write
Default value: 0
Since: 1.0