[1b4901a] | 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 | |
---|
| 32 | #include <stdio.h> |
---|
| 33 | #include <stdlib.h> |
---|
| 34 | #include <assert.h> |
---|
| 35 | #include <string.h> |
---|
| 36 | #include <sys/time.h> |
---|
| 37 | #include <sys/types.h> |
---|
| 38 | #include <time.h> |
---|
| 39 | |
---|
| 40 | #include <netinet/in.h> |
---|
| 41 | #include <netinet/in_systm.h> |
---|
| 42 | #include <netinet/tcp.h> |
---|
| 43 | #include <netinet/ip.h> |
---|
| 44 | #include <netinet/ip_icmp.h> |
---|
| 45 | #include <arpa/inet.h> |
---|
| 46 | #include <sys/socket.h> |
---|
| 47 | #include <string.h> |
---|
| 48 | #include "dagformat.h" |
---|
| 49 | #include "libtrace.h" |
---|
| 50 | |
---|
| 51 | |
---|
| 52 | int main(int argc, char *argv[]) { |
---|
| 53 | char *uri = "pcap:traces/100_packets.pcap"; |
---|
| 54 | int psize = 0; |
---|
| 55 | int error = 0; |
---|
| 56 | int count = 0; |
---|
| 57 | int level = 0; |
---|
| 58 | libtrace_t *trace; |
---|
| 59 | libtrace_out_t *outtrace; |
---|
| 60 | libtrace_packet_t *packet; |
---|
| 61 | |
---|
| 62 | trace = trace_create(uri); |
---|
| 63 | if (!trace) { |
---|
[8a8e54b] | 64 | printf("Error: %s\n",trace_get_err(trace).problem); |
---|
[1b4901a] | 65 | return 1; |
---|
| 66 | } |
---|
| 67 | outtrace = trace_create_output("erf:traces/100_packets.out.erf"); |
---|
| 68 | if (!outtrace) { |
---|
[8a8e54b] | 69 | printf("Error: %s\n",trace_get_err_output(outtrace).problem); |
---|
[1b4901a] | 70 | return 1; |
---|
| 71 | } |
---|
| 72 | |
---|
| 73 | level=0; |
---|
| 74 | trace_config_output(outtrace,TRACE_OPTION_OUTPUT_COMPRESS,&level); |
---|
| 75 | |
---|
| 76 | trace_start(trace); |
---|
| 77 | trace_start_output(outtrace); |
---|
| 78 | |
---|
[82dc7d8] | 79 | packet=trace_create_packet(); |
---|
[1b4901a] | 80 | for (;;) { |
---|
| 81 | if ((psize = trace_read_packet(trace, packet)) <0) { |
---|
| 82 | error = 1; |
---|
| 83 | break; |
---|
| 84 | } |
---|
| 85 | if (psize == 0) { |
---|
| 86 | error = 0; |
---|
| 87 | break; |
---|
| 88 | } |
---|
| 89 | count ++; |
---|
| 90 | trace_write_packet(outtrace,packet); |
---|
| 91 | } |
---|
[82dc7d8] | 92 | trace_destroy_packet(&packet); |
---|
[1b4901a] | 93 | if (error == 0) { |
---|
| 94 | if (count == 100) { |
---|
| 95 | printf("success: 100 packets read\n"); |
---|
| 96 | } else { |
---|
| 97 | printf("failure: 100 packets expected, %d seen\n",count); |
---|
| 98 | error = 1; |
---|
| 99 | } |
---|
| 100 | } else { |
---|
[8a8e54b] | 101 | printf("failure: %s\n",trace_get_err(trace).problem); |
---|
[1b4901a] | 102 | } |
---|
| 103 | trace_destroy(trace); |
---|
| 104 | trace_destroy_output(outtrace); |
---|
| 105 | return error; |
---|
| 106 | } |
---|