Addr returns the [net.Addr] of the underlying [net.Listener].
()
| 87 | |
| 88 | // Addr returns the [net.Addr] of the underlying [net.Listener]. |
| 89 | func (pl *PluginServer) Addr() net.Addr { |
| 90 | return pl.l.Addr() |
| 91 | } |
| 92 | |
| 93 | // Close ensures that the server is no longer accepting new connections and |
| 94 | // closes all existing connections. Existing connections will receive [io.EOF]. |
no outgoing calls