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> /* printf */ |
---|
32 | #include <netinet/in.h> /* ntohs */ |
---|
33 | #include <netdb.h> |
---|
34 | #include "dagformat.h" |
---|
35 | |
---|
36 | #include "libtrace.h" |
---|
37 | |
---|
38 | struct libtrace_t *trace; |
---|
39 | |
---|
40 | char *buffer[4096]; |
---|
41 | |
---|
42 | int main(int argc, char *argv[]) { |
---|
43 | |
---|
44 | char *hostname = "rtclient:chasm.cs.waikato.ac.nz"; |
---|
45 | char *filterstring = 0; |
---|
46 | struct libtrace_ip *ipptr = 0; |
---|
47 | |
---|
48 | int status; // need to pass to rtclient_read_packet |
---|
49 | int psize; |
---|
50 | if (argc == 2) { |
---|
51 | hostname = argv[1]; |
---|
52 | } |
---|
53 | if (argc == 3) { |
---|
54 | hostname = argv[1]; |
---|
55 | filterstring = argv[2]; |
---|
56 | } |
---|
57 | |
---|
58 | // create an rtclient to hostname, on the default port |
---|
59 | trace = create_trace(hostname); |
---|
60 | if (filterstring) { |
---|
61 | libtrace_bpf_setfilter(trace,filterstring); |
---|
62 | } |
---|
63 | |
---|
64 | for (;;) { |
---|
65 | if ((psize = libtrace_read_packet(trace, buffer,4096, &status)) <= 0) { |
---|
66 | // terminate |
---|
67 | break; |
---|
68 | } |
---|
69 | if (!libtrace_bpf_filter(trace, buffer, 4096)) { |
---|
70 | continue; |
---|
71 | } |
---|
72 | ipptr = get_ip(trace,buffer,4096); |
---|
73 | if (ipptr) { |
---|
74 | printf("%d:%d\n",ipptr->ip_p,get_link_type(trace,buffer,4096)); |
---|
75 | } |
---|
76 | } |
---|
77 | destroy_trace(trace); |
---|
78 | return 0; |
---|
79 | } |
---|