|
Lines 1745-1751
client_request_forwarded_tcpip(const cha
Link Here
|
| 1745 |
} |
1745 |
} |
| 1746 |
c = channel_new("forwarded-tcpip", |
1746 |
c = channel_new("forwarded-tcpip", |
| 1747 |
SSH_CHANNEL_CONNECTING, sock, sock, -1, |
1747 |
SSH_CHANNEL_CONNECTING, sock, sock, -1, |
| 1748 |
CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0, |
1748 |
CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, |
| 1749 |
originator_address, 1); |
1749 |
originator_address, 1); |
| 1750 |
xfree(originator_address); |
1750 |
xfree(originator_address); |
| 1751 |
xfree(listen_address); |
1751 |
xfree(listen_address); |
|
Lines 1803-1809
client_request_agent(const char *request
Link Here
|
| 1803 |
return NULL; |
1803 |
return NULL; |
| 1804 |
c = channel_new("authentication agent connection", |
1804 |
c = channel_new("authentication agent connection", |
| 1805 |
SSH_CHANNEL_OPEN, sock, sock, -1, |
1805 |
SSH_CHANNEL_OPEN, sock, sock, -1, |
| 1806 |
CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0, |
1806 |
CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, |
| 1807 |
"authentication agent connection", 1); |
1807 |
"authentication agent connection", 1); |
| 1808 |
c->force_drain = 1; |
1808 |
c->force_drain = 1; |
| 1809 |
return c; |
1809 |
return c; |