]> git.proxmox.com Git - mirror_ovs.git/blame - lib/dpif-netdev.h
lldp: validate a bit more received LLDP frames
[mirror_ovs.git] / lib / dpif-netdev.h
CommitLineData
df1e5a3b 1/*
c4ea7529 2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2015 Nicira, Inc.
df1e5a3b
PS
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef DPIF_NETDEV_H
18#define DPIF_NETDEV_H 1
19
20#include <stdbool.h>
21#include <stddef.h>
22#include <stdint.h>
6b31e073 23#include "dpif.h"
df1e5a3b 24#include "openvswitch/types.h"
cf62fa4c 25#include "dp-packet.h"
df1e5a3b
PS
26#include "packets.h"
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32/* Enough headroom to add a vlan tag, plus an extra 2 bytes to allow IP
33 * headers to be aligned on a 4-byte boundary. */
34enum { DP_NETDEV_HEADROOM = 2 + VLAN_HEADER_LEN };
35
c4ea7529
BP
36bool dpif_is_netdev(const struct dpif *);
37
55c955bd 38#define NR_QUEUE 1
db73f716 39#define NR_PMD_THREADS 1
55c955bd 40
df1e5a3b
PS
41#ifdef __cplusplus
42}
43#endif
44
45#endif /* netdev.h */