/* NETWOX Network toolbox Copyright(c) 1999-2006 Laurent Constantin ----- Main server : http://www.laurentconstantin.com/ Backup servers : http://go.to/laurentconstantin/ http://laurentconstantin.est-la.com/ http://laurentconstantin.free.fr/ http://membres.lycos.fr/lauconstantin/ [my current email address is on the web servers] ----- This file is part of Netwox. Netwox is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. Netwox is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details (http://www.gnu.org/). ------------------------------------------------------------------------ */ /*-------------------------------------------------------------*/ #include "../netwox.h" /*-------------------------------------------------------------*/ netwib_conststring t000113_description[] = { "This tool stores a file to a FTP server.", "", NETWOX_DESC_userpass, NETWOX_DESC_ftp_passive, NETWOX_DESC_client, NETWOX_DESC_toolpriv_none, NULL }; netwox_toolarg t000113_args[] = { NETWOX_SOCK_ARG_TCP_CLIPORT("21"), NETWOX_TOOLARG_OPT_BUF_LOGIN('u', "user", "username", "anonymous"), NETWOX_TOOLARG_OPT_BUF_PASSWORD('a', "pass", "password", "user@"), NETWOX_TOOLARG_OPT_BOOL('V', "passive", "passive", NULL), NETWOX_TOOLARG_REQ_BUF_FILE_RD('f', "local-file", "local file", NULL), NETWOX_TOOLARG_REQ_BUF_FILE('F', "remote-file", "remote file", NULL), NETWOX_TOOLARG_OPTA_UINT32('T', "timeout", "timeout in milliseconds", "60000"), NETWOX_TOOLARG_END }; netwox_tooltreenodetype t000113_nodes[] = { NETWOX_TOOLTREENODETYPE_CLIENT_TCP_FTP, NETWOX_TOOLTREENODETYPE_END }; netwox_tool_info t000113_info = { "FTP client : put a file", t000113_description, "upload", t000113_args, t000113_nodes, }; /*-------------------------------------------------------------*/ netwib_err t000113_core(int argc, char *argv[]) { netwox_arg *parg; netwox_sockinfo sockinfo; netwib_buf user, password, remotefile, localfile; netwib_bool passive; netwox_ftpclient ftpclient; netwib_uint32 maxwaitms; /* obtain parameters */ netwib_er(netwox_arg_init(argc, argv, &t000113_info, &parg)); netwib_er(netwox_sockinfo_init_arg_tcp_cli(parg, &sockinfo)); netwib_er(netwox_arg_buf(parg, 'u', &user)); user.flags |= NETWIB_BUF_FLAGS_SENSITIVE; user.flags |= NETWIB_BUF_FLAGS_SENSITIVE_READONLY; netwib_er(netwox_arg_buf(parg, 'a', &password)); password.flags |= NETWIB_BUF_FLAGS_SENSITIVE; password.flags |= NETWIB_BUF_FLAGS_SENSITIVE_READONLY; netwib_er(netwox_arg_bool(parg, 'V', &passive)); netwib_er(netwox_arg_buf(parg, 'f', &localfile)); netwib_er(netwox_arg_buf(parg, 'F', &remotefile)); netwib_er(netwox_arg_uint32(parg, 'T', &maxwaitms)); /* FTP session */ netwib_er(netwox_ftpclient_init(&sockinfo, maxwaitms, &ftpclient)); netwib_er(netwox_ftpclient_login(&ftpclient, &user, &password)); netwib_er(netwox_ftpclient_bin(&ftpclient)); if (passive) { netwib_er(netwox_ftpclient_passive(&ftpclient)); } else { netwib_er(netwox_ftpclient_active(&ftpclient)); } netwib_er(netwox_ftpclient_file_put(&ftpclient, &localfile, &remotefile)); netwib_er(netwox_ftpclient_close(&ftpclient)); /* close */ netwib_er(netwox_sockinfo_close(&sockinfo)); netwib_er(netwox_arg_close(&parg)); return(NETWIB_ERR_OK); }