[5b66921] | 1 | /* |
---|
| 2 | * This file is part of libtrace |
---|
| 3 | * |
---|
[d5a27e8] | 4 | * Copyright (c) 2007 The University of Waikato, Hamilton, New Zealand. |
---|
[5b66921] | 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 | struct libtrace_t *trace; |
---|
| 52 | |
---|
[8f80e87] | 53 | void iferr(libtrace_t *trace) |
---|
| 54 | { |
---|
| 55 | libtrace_err_t err = trace_get_err(trace); |
---|
| 56 | if (err.err_num==0) |
---|
| 57 | return; |
---|
| 58 | printf("Error: %s\n",err.problem); |
---|
| 59 | exit(1); |
---|
| 60 | } |
---|
| 61 | |
---|
[5b66921] | 62 | int main(int argc, char *argv[]) { |
---|
| 63 | char *uri = "erf:traces/100_packets.erf"; |
---|
| 64 | int psize = 0; |
---|
| 65 | int error = 0; |
---|
| 66 | int count = 0; |
---|
| 67 | libtrace_packet_t *packet; |
---|
| 68 | |
---|
| 69 | trace = trace_create(uri); |
---|
[8f80e87] | 70 | iferr(trace); |
---|
[5b66921] | 71 | |
---|
| 72 | trace_start(trace); |
---|
[8f80e87] | 73 | iferr(trace); |
---|
[5b66921] | 74 | |
---|
[8f80e87] | 75 | trace_seek_erf_timestamp(trace,4704246759960519168ULL); |
---|
| 76 | iferr(trace); |
---|
[5b66921] | 77 | |
---|
| 78 | packet=trace_create_packet(); |
---|
| 79 | for (;;) { |
---|
| 80 | if ((psize = trace_read_packet(trace, packet)) <0) { |
---|
| 81 | error = 1; |
---|
| 82 | break; |
---|
| 83 | } |
---|
| 84 | if (psize == 0) { |
---|
| 85 | error = 0; |
---|
| 86 | break; |
---|
| 87 | } |
---|
| 88 | count ++; |
---|
| 89 | } |
---|
[f208f92] | 90 | trace_destroy_packet(packet); |
---|
[5b66921] | 91 | if (error == 0) { |
---|
| 92 | if (count == 4) { |
---|
| 93 | printf("success: 4 packets read\n"); |
---|
| 94 | } else { |
---|
| 95 | printf("failure: 4 packets expected, %d seen\n",count); |
---|
| 96 | error = 1; |
---|
| 97 | } |
---|
| 98 | } else { |
---|
[8f80e87] | 99 | iferr(trace); |
---|
[5b66921] | 100 | } |
---|
| 101 | trace_destroy(trace); |
---|
| 102 | return error; |
---|
| 103 | } |
---|