(f *ProxyFrame, clientconn *ClientConn)
| 335 | } |
| 336 | |
| 337 | func (c *Server) processClose(f *ProxyFrame, clientconn *ClientConn) { |
| 338 | if clientconn.input != nil { |
| 339 | clientconn.input.processCloseFrame(f) |
| 340 | } else if clientconn.output != nil { |
| 341 | clientconn.output.processCloseFrame(f) |
| 342 | } |
| 343 | } |
no test coverage detected