| 266 | } |
| 267 | |
| 268 | type fullCmd struct { |
| 269 | *Cmd |
| 270 | user, pwd string |
| 271 | r io.Reader |
| 272 | vals url.Values |
| 273 | cooks []*http.Cookie |
| 274 | hdr http.Header |
| 275 | } |
| 276 | |
| 277 | func (f *fullCmd) BasicAuth() (string, string) { |
| 278 | return f.user, f.pwd |
nothing calls this directly
no outgoing calls
no test coverage detected