()
| 18 | } |
| 19 | |
| 20 | func (p Proxy) String() string { |
| 21 | host := net.JoinHostPort(p.Address, strconv.Itoa(p.Port)) |
| 22 | if p.Username != "" { |
| 23 | return fmt.Sprintf("%s:%s@%s", p.Username, p.Password, host) |
| 24 | } |
| 25 | return host |
| 26 | } |
no outgoing calls
no test coverage detected