4.0.1-hotfixescachetimestampsdevelopdpdk-ndagetsilivelibtrace4ndag_formatpfringrc-4.0.1rc-4.0.2rc-4.0.3rc-4.0.4ringdecrementfixringperformanceringtimestampfixes
Last change
on this file since 733c8b4 was
d8b05b7,
checked in by Shane Alcock <salcock@…>, 6 years ago
|
Make sure our copyright covers recent years
Consistency across all of our source files is also nice.
|
-
Property mode set to
100644
|
File size:
1.5 KB
|
Line | |
---|
1 | /* |
---|
2 | * This file is part of libtrace |
---|
3 | * |
---|
4 | * Copyright (c) 2007-2015 The University of Waikato, Hamilton, |
---|
5 | * New Zealand. |
---|
6 | * |
---|
7 | * Authors: Daniel Lawson |
---|
8 | * Perry Lorier |
---|
9 | * Shane Alcock |
---|
10 | * |
---|
11 | * All rights reserved. |
---|
12 | * |
---|
13 | * This code has been developed by the University of Waikato WAND |
---|
14 | * research group. For further information please see http://www.wand.net.nz/ |
---|
15 | * |
---|
16 | * libtrace is free software; you can redistribute it and/or modify |
---|
17 | * it under the terms of the GNU General Public License as published by |
---|
18 | * the Free Software Foundation; either version 2 of the License, or |
---|
19 | * (at your option) any later version. |
---|
20 | * |
---|
21 | * libtrace is distributed in the hope that it will be useful, |
---|
22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
24 | * GNU General Public License for more details. |
---|
25 | * |
---|
26 | * You should have received a copy of the GNU General Public License |
---|
27 | * along with libtrace; if not, write to the Free Software |
---|
28 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
29 | * |
---|
30 | * $Id$ |
---|
31 | * |
---|
32 | */ |
---|
33 | |
---|
34 | #ifdef HAVE_PCAP |
---|
35 | #include "config.h" |
---|
36 | |
---|
37 | #ifndef HAVE_PCAP_DUMP_FLUSH |
---|
38 | #include <stdio.h> |
---|
39 | #include <pcap.h> |
---|
40 | #ifdef HAVE_PCAP_INT_H |
---|
41 | # include <pcap-int.h> |
---|
42 | #endif |
---|
43 | #include <string.h> |
---|
44 | |
---|
45 | /* Custom implementation of pcap_dump_flush, as some versions of PCAP do not |
---|
46 | * have it */ |
---|
47 | |
---|
48 | int pcap_dump_flush(pcap_dumper_t *p) { |
---|
49 | if (fflush((FILE *)p) == EOF) |
---|
50 | return (-1); |
---|
51 | else |
---|
52 | return (0); |
---|
53 | } |
---|
54 | |
---|
55 | #endif |
---|
56 | |
---|
57 | #endif // HAVE_PCAP |
---|
Note: See
TracBrowser
for help on using the repository browser.