DialOption configures how we set up the connection.
| 100 | |
| 101 | // DialOption configures how we set up the connection. |
| 102 | type DialOption interface { |
| 103 | apply(*dialOptions) |
| 104 | } |
| 105 | |
| 106 | var globalDialOptions []DialOption |
| 107 |
no outgoing calls
no test coverage detected