Lines Matching refs:rtype
732 char *rtype = NULL; in server_input_global_request() local
744 if ((r = sshpkt_get_cstring(ssh, &rtype, NULL)) != 0 || in server_input_global_request()
747 debug_f("rtype %s want_reply %d", rtype, want_reply); in server_input_global_request()
750 if (strcmp(rtype, "tcpip-forward") == 0) { in server_input_global_request()
776 } else if (strcmp(rtype, "cancel-tcpip-forward") == 0) { in server_input_global_request()
787 } else if (strcmp(rtype, "streamlocal-forward@openssh.com") == 0) { in server_input_global_request()
805 } else if (strcmp(rtype, "cancel-streamlocal-forward@openssh.com") == 0) { in server_input_global_request()
812 } else if (strcmp(rtype, "no-more-sessions@openssh.com") == 0) { in server_input_global_request()
815 } else if (strcmp(rtype, "hostkeys-prove-00@openssh.com") == 0) { in server_input_global_request()
829 free(rtype); in server_input_global_request()
839 char *rtype = NULL; in server_input_channel_req() local
844 (r = sshpkt_get_cstring(ssh, &rtype, NULL)) != 0 || in server_input_channel_req()
849 id, rtype, want_reply); in server_input_channel_req()
855 if (!strcmp(rtype, "eow@openssh.com")) { in server_input_channel_req()
861 success = session_input_channel_req(ssh, c, rtype); in server_input_channel_req()
871 free(rtype); in server_input_channel_req()