()
| 72 | } |
| 73 | |
| 74 | func (e *blockedIPError) Error() string { |
| 75 | return fmt.Sprintf("connection to %s (%s) blocked: destination is in a private/reserved IP range", e.host, e.ip) |
| 76 | } |
| 77 | |
| 78 | // blockedIPRanges defines private, reserved, and special-purpose IP ranges |
| 79 | // that are blocked by default to prevent connections to internal networks. |
no outgoing calls