summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Laakso <malaakso@elisanet.fi>2016-11-20 23:27:33 +0200
committerJohn Crispin <john@phrozen.org>2016-11-21 11:01:58 +0100
commitb9703ad62627caa8a1aa780334eaa3af1d807751 (patch)
tree3c7748fde458920e13818423c36226066f92cdae
parent423a7e9c9448a247e121a9e79f9ac1a1e8bb5e56 (diff)
wds: add option for specifying profile index
Some modems require the specification of a profile index which determines the APN and the IP family used for the connection. Signed-off-by: Matti Laakso <malaakso@elisanet.fi>
-rw-r--r--commands-wds.c10
-rw-r--r--commands-wds.h2
2 files changed, 12 insertions, 0 deletions
diff --git a/commands-wds.c b/commands-wds.c
index 26c9f59..34b1c9f 100644
--- a/commands-wds.c
+++ b/commands-wds.c
@@ -116,6 +116,16 @@ cmd_wds_set_ip_family_pref_prepare(struct qmi_dev *qmi, struct qmi_request *req,
return QMI_CMD_EXIT;
}
+#define cmd_wds_set_profile_cb no_cb
+static enum qmi_cmd_result
+cmd_wds_set_profile_prepare(struct qmi_dev *qmi, struct qmi_request *req, struct qmi_msg *msg, char *arg)
+{
+ uint32_t idx = strtoul(arg, NULL, 10);
+
+ qmi_set(&wds_sn_req, profile_index_3gpp, idx);
+ return QMI_CMD_DONE;
+}
+
static void
cmd_wds_start_network_cb(struct qmi_dev *qmi, struct qmi_request *req, struct qmi_msg *msg)
{
diff --git a/commands-wds.h b/commands-wds.h
index 3076bae..de025d7 100644
--- a/commands-wds.h
+++ b/commands-wds.h
@@ -27,6 +27,7 @@
__uqmi_command(wds_set_password, password, required, CMD_TYPE_OPTION), \
__uqmi_command(wds_set_ip_family_pref, ip-family, required, CMD_TYPE_OPTION), \
__uqmi_command(wds_set_autoconnect, autoconnect, no, CMD_TYPE_OPTION), \
+ __uqmi_command(wds_set_profile, profile, required, CMD_TYPE_OPTION), \
__uqmi_command(wds_stop_network, stop-network, required, QMI_SERVICE_WDS), \
__uqmi_command(wds_get_packet_service_status, get-data-status, no, QMI_SERVICE_WDS), \
__uqmi_command(wds_set_ip_family, set-ip-family, required, QMI_SERVICE_WDS), \
@@ -43,6 +44,7 @@
" --password <password>: Use network password\n" \
" --ip-family <family>: Use ip-family for the connection (ipv4, ipv6, unspecified)\n" \
" --autoconnect: Enable automatic connect/reconnect\n" \
+ " --profile <index>: Use connection profile\n" \
" --stop-network <pdh>: Stop network connection (use with option below)\n" \
" --autoconnect: Disable automatic connect/reconnect\n" \
" --get-data-status: Get current data access status\n" \