You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.4 KiB

  1. _ss_manager()
  2. {
  3. local cur prev opts ciphers
  4. opts='-s -p -l -k -m -a -f -t -c -n -i -b -u -U -v -h --reuse-port --manager-address --executable --mtu --mptcp --plugin --plugin-opts --help'
  5. ciphers='rc4-md5 aes-128-gcm aes-192-gcm aes-256-gcm aes-128-cfb aes-192-cfb aes-256-cfb aes-128-ctr aes-192-ctr aes-256-ctr camellia-128-cfb camellia-192-cfb camellia-256-cfb bf-cfb chacha20-ietf-poly1305 salsa20 chacha20 chacha20-ietf'
  6. cur=${COMP_WORDS[COMP_CWORD]}
  7. prev="${COMP_WORDS[COMP_CWORD-1]}"
  8. case "$prev" in
  9. -f|-c|--executable)
  10. _filedir || COMPREPLY=( $(compgen -o plusdirs -f ${cur}) )
  11. ;;
  12. -s|-b)
  13. _known_hosts_real -- "${cur}" || OMPREPLY=( $(compgen -A hostname -- ${cur}) )
  14. ;;
  15. -m)
  16. COMPREPLY=( $(compgen -W "$ciphers" -- ${cur}) )
  17. ;;
  18. -a)
  19. _allowed_users || COMPREPLY=( $(compgen -u -- ${cur}) )
  20. ;;
  21. -p|-l|-k|-t|-n|--mtu|--plugin|--plugin-opts)
  22. ;;
  23. -i)
  24. _available_interfaces -a || true
  25. ;;
  26. --manager-address)
  27. _known_hosts_real -- "${cur}" || OMPREPLY=( $(compgen -A hostname -- ${cur}) )
  28. _filedir || COMPREPLY+=( $(compgen -o plusdirs -f ${cur}) )
  29. ;;
  30. *)
  31. COMPREPLY+=( $(compgen -W "${opts}" -- ${cur}) )
  32. ;;
  33. esac
  34. return 0
  35. }
  36. complete -F _ss_manager ss-manager