| 1465 | } |
| 1466 | |
| 1467 | static void abort_aux_connection(rem_port* port) |
| 1468 | { |
| 1469 | if (port->port_flags & PORT_connecting) |
| 1470 | { |
| 1471 | shutdown(port->port_channel, 2); |
| 1472 | SOCLOSE(port->port_channel); |
| 1473 | } |
| 1474 | } |
| 1475 | |
| 1476 | static rem_port* aux_connect(rem_port* port, PACKET* packet) |
| 1477 | { |
no test coverage detected