(f *ProxyFrame, clientconn *ClientConn)
| 329 | } |
| 330 | |
| 331 | func (c *Server) processOpen(f *ProxyFrame, clientconn *ClientConn) { |
| 332 | if clientconn.output != nil { |
| 333 | clientconn.output.processOpenFrame(f) |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | func (c *Server) processClose(f *ProxyFrame, clientconn *ClientConn) { |
| 338 | if clientconn.input != nil { |
no test coverage detected