00001 /** 00002 * @file ccnr_stats.h 00003 * 00004 * Part of ccnr - CCNx Repository Daemon. 00005 * 00006 */ 00007 00008 /* 00009 * Copyright (C) 2011 Palo Alto Research Center, Inc. 00010 * 00011 * This work is free software; you can redistribute it and/or modify it under 00012 * the terms of the GNU General Public License version 2 as published by the 00013 * Free Software Foundation. 00014 * This work is distributed in the hope that it will be useful, but WITHOUT ANY 00015 * WARRANTY; without even the implied warranty of MERCHANTABILITY or 00016 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00017 * for more details. You should have received a copy of the GNU General Public 00018 * License along with this program; if not, write to the 00019 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00020 * Boston, MA 02110-1301, USA. 00021 */ 00022 00023 #ifndef CCNR_STATS_DEFINED 00024 #define CCNR_STATS_DEFINED 00025 00026 #include "ccnr_private.h" 00027 00028 void ccnr_meter_bump(struct ccnr_handle *h,struct ccnr_meter *m,unsigned amt); 00029 void ccnr_meter_destroy(struct ccnr_meter **pm); 00030 void ccnr_meter_init(struct ccnr_handle *h,struct ccnr_meter *m,const char *what); 00031 struct ccnr_meter *ccnr_meter_create(struct ccnr_handle *h,const char *what); 00032 uintmax_t ccnr_meter_total(struct ccnr_meter *m); 00033 unsigned ccnr_meter_rate(struct ccnr_handle *h,struct ccnr_meter *m); 00034 int ccnr_stats_handle_http_connection(struct ccnr_handle *h,struct fdholder *fdholder); 00035 00036 #endif