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_server()
  2. {
  3. local cur prev opts ciphers
  4. opts='-s -b -p -k -f -t -m -c -a -n -u -U -v -h -A --fast-open --mtu --help --mptcp -i -6 -d --manager-address --firewall --acl'
  5. ciphers='rc4-md5 table rc4 aes-128-cfb aes-192-cfb aes-256-cfb aes-128-ctr aes-192-ctr aes-256-ctr bf-cfb camellia-128-cfb camellia-192-cfb camellia-256-cfb cast5-cfb des-cfb idea-cfb rc2-cfb seed-cfb salsa20 chacha20 and chacha20-ietf'
  6. COMPREPLY=()
  7. cur=${COMP_WORDS[COMP_CWORD]}
  8. prev="${COMP_WORDS[COMP_CWORD-1]}"
  9. case "$prev" in
  10. -c|-f|--acl)
  11. _filedir || COMPREPLY=( $(compgen -o plusdirs -f ${cur}) )
  12. ;;
  13. -s|-b)
  14. _known_hosts_real -- "${cur}" || OMPREPLY=( $(compgen -A hostname -- ${cur}) )
  15. ;;
  16. -m)
  17. COMPREPLY=( $(compgen -W "$ciphers" -- ${cur}) )
  18. ;;
  19. -a)
  20. _allowed_users || COMPREPLY=( $(compgen -u -- ${cur}) )
  21. ;;
  22. -p|-k|-t|-n|--mtu|-d)
  23. ;;
  24. --manager-address)
  25. _known_hosts_real -- "${cur}" || OMPREPLY=( $(compgen -A hostname -- ${cur}) )
  26. _filedir || COMPREPLY+=( $(compgen -o plusdirs -f ${cur}) )
  27. ;;
  28. -i)
  29. _available_interfaces -a || true
  30. ;;
  31. *)
  32. COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
  33. ;;
  34. esac
  35. }
  36. complete -F _ss_server ss-server