(current string)
| 1121 | } |
| 1122 | |
| 1123 | func appendBasePath(current string) string { |
| 1124 | if current == "" { |
| 1125 | return "/" |
| 1126 | } |
| 1127 | if strings.HasSuffix(current, "/") { |
| 1128 | return current |
| 1129 | } |
| 1130 | return current + "/" |
| 1131 | } |
| 1132 | |
| 1133 | func (pool *BrutePool) doActive() { |
| 1134 | if pool.Mod == HostSpray { |
no outgoing calls