()
| 898 | } |
| 899 | |
| 900 | func (s Server) clone() Server { |
| 901 | c := s |
| 902 | if s.URL != nil { |
| 903 | u := *s.URL |
| 904 | c.URL = &u |
| 905 | } |
| 906 | return c |
| 907 | } |
| 908 | |
| 909 | // ServerInfo represents the information about the server that is sent in the INFO protocol message. |
| 910 | type ServerInfo struct { |
no outgoing calls
no test coverage detected