Repository
https://github.com/globalsign/mgo
New Features
- What feature(s) did you add?
Added the feature to connect to a Unix Domain Socket (POSIX Local IPC Sockets) - How did you implement it/them?
https://github.com/globalsign/mgo/pull/129/files
Replaced every net.TCPAddr
and net.TCPConn
with their generic interface types net.Addr
and net.Conn
. Added socket recognition to the URI-parser.