(key string)
| 104 | } |
| 105 | |
| 106 | func isPerHostOnly(key string) bool { |
| 107 | for _, configKey := range config.Options { |
| 108 | if key == configKey.Key { |
| 109 | return configKey.PerHostOnly |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | return false |
| 114 | } |
| 115 | |
| 116 | type InvalidValueError struct { |
| 117 | ValidValues []string |
no outgoing calls