X-Git-Url: http://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Fppastats.h;h=8a13348c4f950140ca7dbb505b0350db783d711b;hb=586361f5da21ef8e34987db0c628af1fb06df6a1;hp=671eea4252f06e61b2fde478acd688054413da79;hpb=1288d571249ac21acb2b690cc9ff0d0f07a7655e;p=ppastats.git diff --git a/src/ppastats.h b/src/ppastats.h index 671eea4..8a13348 100644 --- a/src/ppastats.h +++ b/src/ppastats.h @@ -1,27 +1,25 @@ /* - Copyright (C) 2011 jeanfi@gmail.com - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - 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 - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301 USA -*/ + * Copyright (C) 2011-2014 jeanfi@gmail.com + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * 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 GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301 USA + */ #ifndef _PPASTATS_PPASTATS_H_ #define _PPASTATS_PPASTATS_H_ -extern int debug; - #include "lp.h" struct arch_stats { @@ -35,10 +33,12 @@ struct distro_stats { struct arch_stats **archs; int download_count; + struct daily_download_total **ddts; }; struct version_stats { char *version; + time_t date_created; struct distro_stats **distros; int download_count; @@ -63,9 +63,13 @@ struct ppa_stats { struct daily_download_total **daily_download_totals; }; +/* + * 'ws_size': size of the reply array of the getPublishedBinaries request. + */ struct ppa_stats *create_ppa_stats(const char *owner, const char *ppa, - const char *package_status); + const char *package_status, + int ws_size); void ppa_stats_free(struct ppa_stats *ppastats); #endif