add autoconnect option for --start-network
[project/uqmi.git] / commands-wds.h
1 #define __uqmi_wds_commands \
2         __uqmi_command(wds_start_network, start-network, required, QMI_SERVICE_WDS), \
3         __uqmi_command(wds_set_auth, auth-type, required, CMD_TYPE_OPTION), \
4         __uqmi_command(wds_set_username, username, required, CMD_TYPE_OPTION), \
5         __uqmi_command(wds_set_password, password, required, CMD_TYPE_OPTION), \
6         __uqmi_command(wds_set_autoconnect, autoconnect, no, CMD_TYPE_OPTION), \
7         __uqmi_command(wds_get_packet_service_status, get-data-status, no, QMI_SERVICE_WDS), \
8         __uqmi_command(wds_reset, reset-wds, no, QMI_SERVICE_WDS) \
9
10
11 #define wds_helptext \
12                 "  --start-network <apn>:            Start network connection (use with options below)\n" \
13                 "    --auth-type pap|chap|both|none: Use network authentication type\n" \
14                 "    --username <name>:              Use network username\n" \
15                 "    --password <password>:          Use network password\n" \
16                 "    --autconnect:                   Enable automatic connect/reconnect\n" \
17                 "  --get-data-status:                Get current data access status\n" \
18