1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
/*
* zsync - client side rsync over http
* Copyright (C) 2004,2005,2009 Colin Phipps <cph@moria.org.uk>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the Artistic License v2 (see the accompanying
* file COPYING for the full license terms), or, at your option, any later
* version of the same license.
*
* This program 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
* COPYING file for details.
*/
struct progress {
time_t starttime;
time_t lasttime;
float lastpcnt;
long long lastdl;
};
extern int no_progress;
void do_progress(struct progress* p, float pcnt, long long newdl);
/* end_progress - done parameter is 0 for error, 1 for okay-but-incomplete, 2 for completed */
void end_progress(struct progress* p, int done);
|