diff options
| author | Alexander Couzens | 2024-08-14 12:36:16 +0000 |
|---|---|---|
| committer | David Bauer | 2025-05-31 20:41:00 +0000 |
| commit | 85d49f725046342012bb6190deeb1e2ebb520cdb (patch) | |
| tree | 8d46db35c6f0a6a94a64cd3357d84b4476cf5d5d | |
| parent | d39b53b7b0c91133e12db3dec1e73ef39a791e93 (diff) | |
| download | uqmi-85d49f725046342012bb6190deeb1e2ebb520cdb.tar.gz | |
uqmid: WDS: disable autoconnect on start network
The autoconnect features prevents uqmid from working correctly,
because the autoconnected connection doesn't contain a valid aid
which is required to control the connection.
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
| -rw-r--r-- | uqmid/modem_tx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/uqmid/modem_tx.c b/uqmid/modem_tx.c index dc345e2..9698681 100644 --- a/uqmid/modem_tx.c +++ b/uqmid/modem_tx.c @@ -171,6 +171,7 @@ int tx_wds_start_network(struct modem *modem, struct qmi_service *wds, request_c struct qmi_wds_start_network_request start_req = {}; qmi_set(&start_req, profile_index_3gpp, profile_idx); qmi_set(&start_req, ip_family_preference, ip_family); + qmi_set(&start_req, enable_autoconnect, false); int ret = qmi_set_wds_start_network_request(msg, &start_req); if (ret) { |