mirror of
https://github.com/go-micro/go-micro.git
synced 2024-11-24 08:02:32 +02:00
21 lines
319 B
Go
21 lines
319 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
|
|
}
|