mirror of the now-defunct rocklinux.org
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.

73 lines
1.0 KiB

  1. public_essid() {
  2. addcode up 4 5 "iwconfig $if essid $*"
  3. }
  4. public_nwid() {
  5. addcode up 4 5 "iwconfig $if nwid $*"
  6. }
  7. public_domain() {
  8. addcode up 4 5 "iwconfig $if domain $*"
  9. }
  10. public_freq() {
  11. addcode up 4 5 "iwconfig $if freq $*"
  12. }
  13. public_channel() {
  14. addcode up 4 5 "iwconfig $if channel $*"
  15. }
  16. public_sens() {
  17. addcode up 4 5 "iwconfig $if sens $*"
  18. }
  19. public_mode() {
  20. addcode up 4 4 "iwconfig $if mode $*"
  21. }
  22. public_ap() {
  23. addcode up 4 5 "iwconfig $if ap $*"
  24. }
  25. public_nick() {
  26. addcode up 4 5 "iwconfig $if nick $*"
  27. }
  28. public_rate() {
  29. addcode up 4 5 "iwconfig $if rate $*"
  30. }
  31. public_rts() {
  32. addcode up 4 5 "iwconfig $if rts $*"
  33. }
  34. public_frag() {
  35. addcode up 4 5 "iwconfig $if frag $*"
  36. }
  37. public_key() {
  38. addcode up 4 5 "iwconfig $if key $*"
  39. }
  40. public_enc() {
  41. addcode up 4 5 "iwconfig $if enc $*"
  42. }
  43. public_power() {
  44. addcode up 4 5 "iwconfig $if power $*"
  45. }
  46. public_txpower() {
  47. addcode up 4 5 "iwconfig $if txpower $*"
  48. }
  49. public_retry() {
  50. addcode up 4 5 "iwconfig $if retry $*"
  51. }
  52. public_commit() {
  53. addcode up 4 9 "iwconfig $if commit"
  54. }