[f20b30e] | 1 | /* |
---|
| 2 | * This file is part of libtrace |
---|
| 3 | * |
---|
| 4 | * Copyright (c) 2004 The University of Waikato, Hamilton, New Zealand. |
---|
| 5 | * Authors: Daniel Lawson |
---|
| 6 | * Perry Lorier |
---|
| 7 | * |
---|
| 8 | * All rights reserved. |
---|
| 9 | * |
---|
| 10 | * This code has been developed by the University of Waikato WAND |
---|
| 11 | * research group. For further information please see http://www.wand.net.nz/ |
---|
| 12 | * |
---|
| 13 | * libtrace is free software; you can redistribute it and/or modify |
---|
| 14 | * it under the terms of the GNU General Public License as published by |
---|
| 15 | * the Free Software Foundation; either version 2 of the License, or |
---|
| 16 | * (at your option) any later version. |
---|
| 17 | * |
---|
| 18 | * libtrace is distributed in the hope that it will be useful, |
---|
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 21 | * GNU General Public License for more details. |
---|
| 22 | * |
---|
| 23 | * You should have received a copy of the GNU General Public License |
---|
| 24 | * along with libtrace; if not, write to the Free Software |
---|
| 25 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 26 | * |
---|
| 27 | * $Id$ |
---|
| 28 | * |
---|
| 29 | */ |
---|
| 30 | |
---|
| 31 | #include <stdio.h> |
---|
| 32 | #include "libtrace.h" |
---|
| 33 | #include "libpacketdump.h" |
---|
| 34 | |
---|
| 35 | int main(int argc, char *argv[]) { |
---|
| 36 | |
---|
[d56089a] | 37 | struct libtrace_packet_t *packet = trace_create_packet(); |
---|
[f20b30e] | 38 | struct libtrace_t *trace; |
---|
| 39 | |
---|
| 40 | if (argc!=2) { |
---|
| 41 | printf("usage: %s erfuri\n",argv[0]); |
---|
| 42 | printf("This program dumps every packet out to stdout"); |
---|
| 43 | return 1; |
---|
| 44 | } |
---|
| 45 | |
---|
| 46 | trace = trace_create(argv[1]); |
---|
| 47 | |
---|
| 48 | while (trace_read_packet(trace,&packet)>0) { |
---|
| 49 | trace_dump_packet(&packet); |
---|
| 50 | printf("\n"); |
---|
| 51 | } |
---|
| 52 | |
---|
| 53 | trace_destroy(trace); |
---|
| 54 | return 0; |
---|
| 55 | } |
---|