| 64 | } |
| 65 | |
| 66 | static struct io_plan *connect_finish2(struct io_conn *conn, |
| 67 | struct connecting_socks *connect) |
| 68 | { |
| 69 | status_io(LOG_IO_IN, NULL, "proxy", |
| 70 | connect->buffer + SIZE_OF_RESPONSE + SIZE_OF_IPV4_RESPONSE, |
| 71 | SIZE_OF_IPV6_RESPONSE - SIZE_OF_IPV4_RESPONSE); |
| 72 | status_debug("Now try LN connect out for host %s", connect->host); |
| 73 | return connection_out(conn, connect->connect); |
| 74 | } |
| 75 | |
| 76 | static struct io_plan *connect_finish(struct io_conn *conn, |
| 77 | struct connecting_socks *connect) |
nothing calls this directly
no test coverage detected