mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-12 08:23:58 +02:00
63a9b94820
* feat: support use of listen options * style: Adjust the import order of packages.
21 lines
318 B
Go
21 lines
318 B
Go
package transport
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
type netListener struct{}
|
|
|
|
// getNetListener Get net.Listener from ListenOptions
|
|
func getNetListener(o *ListenOptions) net.Listener {
|
|
if o.Context == nil {
|
|
return nil
|
|
}
|
|
|
|
if l, ok := o.Context.Value(netListener{}).(net.Listener); ok && l != nil {
|
|
return l
|
|
}
|
|
|
|
return nil
|
|
}
|