Statistics
| Branch: | Revision:

root / net / dump.h @ 54cdaa1b

History | View | Annotate | Download (1.3 kB)

1 1abecf77 Mark McLoughlin
/*
2 1abecf77 Mark McLoughlin
 * QEMU System Emulator
3 1abecf77 Mark McLoughlin
 *
4 1abecf77 Mark McLoughlin
 * Copyright (c) 2003-2008 Fabrice Bellard
5 1abecf77 Mark McLoughlin
 *
6 1abecf77 Mark McLoughlin
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 1abecf77 Mark McLoughlin
 * of this software and associated documentation files (the "Software"), to deal
8 1abecf77 Mark McLoughlin
 * in the Software without restriction, including without limitation the rights
9 1abecf77 Mark McLoughlin
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 1abecf77 Mark McLoughlin
 * copies of the Software, and to permit persons to whom the Software is
11 1abecf77 Mark McLoughlin
 * furnished to do so, subject to the following conditions:
12 1abecf77 Mark McLoughlin
 *
13 1abecf77 Mark McLoughlin
 * The above copyright notice and this permission notice shall be included in
14 1abecf77 Mark McLoughlin
 * all copies or substantial portions of the Software.
15 1abecf77 Mark McLoughlin
 *
16 1abecf77 Mark McLoughlin
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 1abecf77 Mark McLoughlin
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 1abecf77 Mark McLoughlin
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 1abecf77 Mark McLoughlin
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 1abecf77 Mark McLoughlin
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 1abecf77 Mark McLoughlin
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 1abecf77 Mark McLoughlin
 * THE SOFTWARE.
23 1abecf77 Mark McLoughlin
 */
24 1abecf77 Mark McLoughlin
#ifndef QEMU_NET_DUMP_H
25 1abecf77 Mark McLoughlin
#define QEMU_NET_DUMP_H
26 1abecf77 Mark McLoughlin
27 1abecf77 Mark McLoughlin
#include "net.h"
28 1abecf77 Mark McLoughlin
#include "qemu-common.h"
29 1abecf77 Mark McLoughlin
30 1abecf77 Mark McLoughlin
int net_init_dump(QemuOpts *opts, Monitor *mon,
31 1abecf77 Mark McLoughlin
                  const char *name, VLANState *vlan);
32 1abecf77 Mark McLoughlin
33 1abecf77 Mark McLoughlin
#endif /* QEMU_NET_DUMP_H */