Home | History | Annotate | Download | only in openssh

Lines Matching defs:rtype

183 static void port_open_helper(Channel *c, char *rtype);
1415 port_open_helper(Channel *c, char *rtype)
1433 rtype, c->listening_port, c->path, c->host_port,
1441 packet_put_cstring(rtype);
1445 if (strcmp(rtype, "direct-tcpip") == 0) {
1449 } else if (strcmp(rtype, "direct-streamlocal@openssh.com") == 0) {
1452 } else if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1460 if (strcmp(rtype, "forwarded-streamlocal@openssh.com") == 0) {
1513 char *rtype;
1522 rtype = "forwarded-tcpip";
1525 rtype = "forwarded-streamlocal@openssh.com";
1528 rtype = "direct-streamlocal@openssh.com";
1531 rtype = "dynamic-tcpip";
1534 rtype = "direct-tcpip";
1549 nc = channel_new(rtype, nextstate, newsock, newsock, -1,
1550 c->local_window_max, c->local_maxpacket, 0, rtype, 1);
1557 port_open_helper(nc, rtype);