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 "dagformat.h" |
---|
48 | #include "libtrace.h" |
---|
49 | |
---|
50 | |
---|
51 | int main(int argc, char *argv[]) { |
---|
52 | char *uri = "erf:./traces/100_packets.erf"; |
---|
53 | struct libtrace_t *trace; |
---|
54 | |
---|
55 | trace = trace_create(uri); |
---|
56 | |
---|
57 | trace_start(trace); |
---|
58 | |
---|
59 | if (trace) { |
---|
60 | printf("success: can open erf traces\n"); |
---|
61 | trace_destroy(trace); |
---|
62 | return 0; |
---|
63 | } |
---|
64 | printf("failure: cannot open erf traces\n"); |
---|
65 | trace_perror("trace_create"); |
---|
66 | return -1; |
---|
67 | } |
---|