4.0.1-hotfixescachetimestampsdevelopdpdk-ndagetsilivendag_formatrc-4.0.1rc-4.0.2rc-4.0.3rc-4.0.4ringdecrementfixringperformanceringtimestampfixes
Last change
on this file since 8485d99 was
ee6e802,
checked in by Shane Alcock <salcock@…>, 6 years ago
|
Updated copyright blurb on all source files
In some cases, this meant adding copyright blurbs to files that
had never had them before.
|
-
Property mode set to
100644
|
File size:
1.3 KB
|
Rev | Line | |
---|
[ee6e802] | 1 | /* |
---|
| 2 | * |
---|
| 3 | * Copyright (c) 2007-2016 The University of Waikato, Hamilton, New Zealand. |
---|
| 4 | * All rights reserved. |
---|
| 5 | * |
---|
| 6 | * This file is part of libtrace. |
---|
| 7 | * |
---|
| 8 | * This code has been developed by the University of Waikato WAND |
---|
| 9 | * research group. For further information please see http://www.wand.net.nz/ |
---|
| 10 | * |
---|
| 11 | * libtrace is free software; you can redistribute it and/or modify |
---|
| 12 | * it under the terms of the GNU Lesser General Public License as published by |
---|
| 13 | * the Free Software Foundation; either version 3 of the License, or |
---|
| 14 | * (at your option) any later version. |
---|
| 15 | * |
---|
| 16 | * libtrace is distributed in the hope that it will be useful, |
---|
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 19 | * GNU Lesser General Public License for more details. |
---|
| 20 | * |
---|
| 21 | * You should have received a copy of the GNU Lesser General Public License |
---|
| 22 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
| 23 | * |
---|
| 24 | * |
---|
| 25 | */ |
---|
| 26 | |
---|
| 27 | |
---|
[d48008d] | 28 | #include <pcap.h> |
---|
| 29 | #include <pcap-bpf.h> |
---|
| 30 | #ifdef __cplusplus |
---|
| 31 | extern "C" { |
---|
| 32 | #endif |
---|
| 33 | typedef unsigned int (*bpf_run_t)(unsigned char *packet, unsigned int length); |
---|
| 34 | |
---|
| 35 | typedef struct bpf_jit_t { |
---|
| 36 | bpf_run_t bpf_run; |
---|
| 37 | } bpf_jit_t; |
---|
| 38 | |
---|
| 39 | bpf_jit_t *compile_program(struct bpf_insn insns[], int plen); |
---|
| 40 | void destroy_program(struct bpf_jit_t *bpf_jit); |
---|
| 41 | |
---|
| 42 | #ifdef __cplusplus |
---|
| 43 | } |
---|
| 44 | #endif |
---|
| 45 | |
---|
Note: See
TracBrowser
for help on using the repository browser.