|
Lines 1689-1695
mux_client_forward(int fd, int cancel_flag, u_int ftype, struct Forward *fwd)
Link Here
|
| 1689 |
buffer_put_cstring(&m, fwd->listen_path); |
1689 |
buffer_put_cstring(&m, fwd->listen_path); |
| 1690 |
} else { |
1690 |
} else { |
| 1691 |
buffer_put_cstring(&m, |
1691 |
buffer_put_cstring(&m, |
| 1692 |
fwd->listen_host == NULL ? "" : fwd->listen_host); |
1692 |
fwd->listen_host == NULL ? "" : |
|
|
1693 |
*fwd->listen_host == '\0' ? "*" : fwd->listen_host); |
| 1693 |
} |
1694 |
} |
| 1694 |
buffer_put_int(&m, fwd->listen_port); |
1695 |
buffer_put_int(&m, fwd->listen_port); |
| 1695 |
if (fwd->connect_path != NULL) { |
1696 |
if (fwd->connect_path != NULL) { |
| 1696 |
- |
|
|