-
Notifications
You must be signed in to change notification settings - Fork 708
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADDED] CustomDialer interface/option setter
We recently added a Dialer option, however, we made it a *net.Dialer, which is very restrictive (since *net.Dialer is a struct, not an interface). One could imagine creating a Dialer that would create pipes between the client and an embedded server. Since Dial() returns a net.Conn, which is an interface, everything would work the same. Resolves #329
- Loading branch information
Showing
2 changed files
with
84 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters