(f *ProxyFrame, clientconn *ClientConn)
| 315 | } |
| 316 | |
| 317 | func (s *Server) processData(f *ProxyFrame, clientconn *ClientConn) { |
| 318 | if clientconn.input != nil { |
| 319 | clientconn.input.processDataFrame(f) |
| 320 | } else if clientconn.output != nil { |
| 321 | clientconn.output.processDataFrame(f) |
| 322 | } |
| 323 | } |
| 324 | |
| 325 | func (s *Server) processOpenRsp(f *ProxyFrame, clientconn *ClientConn) { |
| 326 | if clientconn.input != nil { |
no test coverage detected