Lines Matching refs:cmd_status
89 unsigned cmd_status = 0; in get_ftp_response() local
105 cmd_status = atolx_range(toybuf, 0, INT_MAX); in get_ftp_response()
107 return cmd_status; in get_ftp_response()
112 int cmd_status = 0; in send_requests() local
118 cmd_status = get_ftp_response("USER", TT.username); in send_requests()
119 if (cmd_status == PASSWORD_REQUEST) { //user logged in. Need Password. in send_requests()
122 } else if (cmd_status == USERLOGGED_SUCCESS); //do nothing in send_requests()
244 unsigned cmd_status = 0; in put_file() local
254 cmd_status = get_ftp_response("STOR", r_filename); in put_file()
255 if ( (cmd_status == DATACONNECTION_OPENED) || in put_file()
256 (cmd_status == FTPFILE_STATUSOKAY)) { in put_file()