/* * This file is part of libtrace * * Copyright (c) 2004 The University of Waikato, Hamilton, New Zealand. * Authors: Daniel Lawson * Perry Lorier * * All rights reserved. * * This code has been developed by the University of Waikato WAND * research group. For further information please see http://www.wand.net.nz/ * * libtrace 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. * * libtrace 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 libtrace; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * $Id$ * */ // // This program takes a series of traces and bpf filters and outputs how many // bytes/packets #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "libtrace.h" struct libtrace_t *trace; struct filter_t { char *expr; struct libtrace_filter_t *filter; uint64_t count; uint64_t bytes; } *filters = NULL; int filter_count=0; uint64_t totcount; uint64_t totbytes; /* Process a trace, counting packets that match filter(s) */ void run_trace(char *uri) { struct libtrace_packet_t *packet = trace_packet_create(); int i; uint64_t count = 0; uint64_t bytes = 0; fprintf(stderr,"%s:\n",uri); trace = trace_create(uri); for (;;) { int psize; if ((psize = trace_read_packet(trace, &packet)) <1) { break; } for(i=0;i