(f *ProxyFrame, serverconn *ServerConn)
| 308 | } |
| 309 | |
| 310 | func (c *Client) processOpen(f *ProxyFrame, serverconn *ServerConn) { |
| 311 | if serverconn.output != nil { |
| 312 | serverconn.output.processOpenFrame(f) |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | func (c *Client) processOpenRsp(f *ProxyFrame, serverconn *ServerConn) { |
| 317 | if serverconn.input != nil { |
no test coverage detected