diff options
author | Reinhard Speyerer <rspmn@arcor.de> | 2017-04-18 23:22:35 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2017-04-19 10:28:02 +0200 |
commit | d1b5a4971cea6fbcdc7ac7c3606f630314564072 (patch) | |
tree | 3b5c1006e4a95428ba10781b749ae860979cd22d /src/qmicli/qmicli-completion | |
parent | bf387a823c2579462a16bec599b3ae86d8ed3b87 (diff) | |
download | external_libqmi-d1b5a4971cea6fbcdc7ac7c3606f630314564072.zip external_libqmi-d1b5a4971cea6fbcdc7ac7c3606f630314564072.tar.gz external_libqmi-d1b5a4971cea6fbcdc7ac7c3606f630314564072.tar.bz2 |
qmicli: add --wds-set-ip-family command
Add qmicli --wds-set-ip-family command as suggested by Aleksander Morgado
to enable proper dual stack support.
Signed-off-by: Reinhard Speyerer <rspmn@arcor.de>
Diffstat (limited to 'src/qmicli/qmicli-completion')
-rw-r--r-- | src/qmicli/qmicli-completion | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qmicli/qmicli-completion b/src/qmicli/qmicli-completion index 1a1b4b5..fa75668 100644 --- a/src/qmicli/qmicli-completion +++ b/src/qmicli/qmicli-completion @@ -118,6 +118,10 @@ _qmicli() COMPREPLY=( $(compgen -W "[(MuxId),(Ep-Iface-Number)]" -- $cur) ) return 0 ;; + '--wds-set-ip-family') + COMPREPLY=( $(compgen -W "[4|6]" -- $cur) ) + return 0 + ;; '--uim-read-transparent') COMPREPLY=( $(compgen -W "[0xNNNN,0xNNNN,...]" -- $cur) ) return 0 |