Skip to content

Instantly share code, notes, and snippets.

@klizhentas
Created August 26, 2014 23:07
Show Gist options
  • Save klizhentas/7fdeac56b93e0163c8c2 to your computer and use it in GitHub Desktop.
Save klizhentas/7fdeac56b93e0163c8c2 to your computer and use it in GitHub Desktop.
func CloneListener(l net.Listener) (net.Listener, error) {
t := l.(*net.TCPListener)
file, err := t.File()
if err != nil {
return nil, err
}
return net.FileListener(file)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment