(b []byte)
| 18 | type zeroSource struct{} |
| 19 | |
| 20 | func (zeroSource) Read(b []byte) (n int, err error) { |
| 21 | clear(b) |
| 22 | return len(b), nil |
| 23 | } |
| 24 | |
| 25 | func ExampleDial() { |
| 26 | // Connecting with a custom root-certificate set. |
nothing calls this directly
no outgoing calls
no test coverage detected