// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2008 University of California
//
// BOINC is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// BOINC 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with BOINC. If not, see .
// put_file [options]
// --host_id N ID of host to send to
// --file_name name name of file
#include "config.h"
#if HAVE_UNISTD_H
#include
#endif
#include
#include
#include
#include "backend_lib.h"
#include "md5_file.h"
#include "svn_version.h"
#include "filesys.h"
#include "sched_config.h"
#include "sched_util.h"
void usage() {
fprintf(stderr,
"put_file [options]: send a file to a host\n\n"
"Options:\n"
" --host_id id host DB ID\n"
" --file_name name file name\n"
" [--url X] file URL (can specify several)\n"
" [--md5 X] file MD5 (must specify if nonlocal)\n"
" [--nbytes X] file size (must specify if nonlocal)\n"
" [--max_latency X] max latency, seconds\n"
" [ -h | --help ] Show this help text.\n"
" [ -v | --version ] Show version information.\n"
);
exit(1);
}
int main(int argc, char** argv) {
int i, retval;
char file_name[256], url[1024], path[MAXPATHLEN];
int host_id;
vector urls;
double nbytes = -1;
char md5[256];
double max_latency = 7*86400;
strcpy(file_name, "");
strcpy(md5, "");
host_id = 0;
check_stop_daemons();
for (i=1; i