• source navigation  • diff markup  • identifier search  • freetext search  • 

Sources/uqmi/uqmi/commands-wds.h

  1 /*
  2  * uqmi -- tiny QMI support implementation
  3  *
  4  * Copyright (C) 2014-2015 Felix Fietkau <nbd@openwrt.org>
  5  *
  6  * This library is free software; you can redistribute it and/or
  7  * modify it under the terms of the GNU Lesser General Public
  8  * License as published by the Free Software Foundation; either
  9  * version 2 of the License, or (at your option) any later version.
 10  *
 11  * This library is distributed in the hope that it will be useful,
 12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 14  * Lesser General Public License for more details.
 15  *
 16  * You should have received a copy of the GNU Lesser General Public
 17  * License along with this library; if not, write to the
 18  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 19  * Boston, MA 02110-1301 USA.
 20  */
 21 
 22 #define __uqmi_wds_commands \
 23         __uqmi_command(wds_start_network, start-network, no, QMI_SERVICE_WDS), \
 24         __uqmi_command(wds_set_apn, apn, required, CMD_TYPE_OPTION), \
 25         __uqmi_command(wds_set_auth, auth-type, required, CMD_TYPE_OPTION), \
 26         __uqmi_command(wds_set_username, username, required, CMD_TYPE_OPTION), \
 27         __uqmi_command(wds_set_password, password, required, CMD_TYPE_OPTION), \
 28         __uqmi_command(wds_set_ip_family_pref, ip-family, required, CMD_TYPE_OPTION), \
 29         __uqmi_command(wds_set_autoconnect, autoconnect, no, CMD_TYPE_OPTION), \
 30         __uqmi_command(wds_set_profile, profile, required, CMD_TYPE_OPTION), \
 31         __uqmi_command(wds_stop_network, stop-network, required, QMI_SERVICE_WDS), \
 32         __uqmi_command(wds_get_packet_service_status, get-data-status, no, QMI_SERVICE_WDS), \
 33         __uqmi_command(wds_set_ip_family, set-ip-family, required, QMI_SERVICE_WDS), \
 34         __uqmi_command(wds_set_autoconnect_settings, set-autoconnect, required, QMI_SERVICE_WDS), \
 35         __uqmi_command(wds_reset, reset-wds, no, QMI_SERVICE_WDS), \
 36         __uqmi_command(wds_get_profile_settings, get-profile-settings, required, QMI_SERVICE_WDS), \
 37         __uqmi_command(wds_get_default_profile, get-default-profile, required, QMI_SERVICE_WDS), \
 38         __uqmi_command(wds_create_profile, create-profile, required, QMI_SERVICE_WDS), \
 39         __uqmi_command(wds_modify_profile, modify-profile, required, QMI_SERVICE_WDS), \
 40         __uqmi_command(wds_set_pdp_type, pdp-type, required, CMD_TYPE_OPTION), \
 41         __uqmi_command(wds_no_roaming, no-roaming, required, CMD_TYPE_OPTION), \
 42         __uqmi_command(wds_get_current_settings, get-current-settings, no, QMI_SERVICE_WDS) \
 43 
 44 
 45 #define wds_helptext \
 46                 "  --start-network:                  Start network connection (use with options below)\n" \
 47                 "    --apn <apn>:                    Use APN\n" \
 48                 "    --auth-type pap|chap|both|none: Use network authentication type\n" \
 49                 "    --username <name>:              Use network username\n" \
 50                 "    --password <password>:          Use network password\n" \
 51                 "    --ip-family <family>:           Use ip-family for the connection (ipv4, ipv6, unspecified)\n" \
 52                 "    --autoconnect:                  Enable automatic connect/reconnect\n" \
 53                 "    --profile <index>:              Use connection profile\n" \
 54                 "  --stop-network <pdh>:             Stop network connection (use with option below)\n" \
 55                 "    --autoconnect:                  Disable automatic connect/reconnect\n" \
 56                 "  --get-data-status:                Get current data access status\n" \
 57                 "  --set-ip-family <val>:            Set ip-family (ipv4, ipv6, unspecified)\n" \
 58                 "  --set-autoconnect <val>:          Set automatic connect/reconnect (disabled, enabled, paused)\n" \
 59                 "  --get-profile-settings <val,#>:   Get APN profile settings (3gpp, 3gpp2),#\n" \
 60                 "  --get-default-profile <val>:      Get default profile number (3gpp, 3gpp2)\n" \
 61                 "  --create-profile <val>            Create profile (3gpp, 3gpp2)\n" \
 62                 "    --apn <apn>:                    Use APN\n" \
 63                 "    --pdp-type ipv4|ipv6|ipv4v6>:   Use pdp-type for the connection\n" \
 64                 "    --username <name>:              Use network username\n" \
 65                 "    --password <password>:          Use network password\n" \
 66                 "    --auth-type pap|chap|both|none: Use network authentication type\n" \
 67                 "    --no-roaming false|true         To allow roaming, set to false\n" \
 68                 "  --modify-profile <val>,#          Modify profile number (3gpp, 3gpp2)\n" \
 69                 "    --apn <apn>:                    Use APN\n" \
 70                 "    --pdp-type ipv4|ipv6|ipv4v6>:   Use pdp-type for the connection\n" \
 71                 "    --username <name>:              Use network username\n" \
 72                 "    --password <password>:          Use network password\n" \
 73                 "    --auth-type pap|chap|both|none: Use network authentication type\n" \
 74                 "    --no-roaming false|true         To allow roaming, set to false\n" \
 75                 "  --get-current-settings:           Get current connection settings\n" \
 76 
 77 

This page was automatically generated by LXR 0.3.1.  •  OpenWrt