(proxyDial statute.ProxyDialFunc)
| 104 | } |
| 105 | |
| 106 | func WithProxyDial(proxyDial statute.ProxyDialFunc) ServerOption { |
| 107 | return func(s *Server) { |
| 108 | s.ProxyDial = proxyDial |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | func WithContext(ctx context.Context) ServerOption { |
| 113 | return func(s *Server) { |
nothing calls this directly
no outgoing calls
no test coverage detected