]> git.proxmox.com Git - ovs.git/blame - lib/tnl-neigh-cache.h
tnl-neigh-cache: Remove tnl_arp_lookup().
[ovs.git] / lib / tnl-neigh-cache.h
CommitLineData
a36de779
PS
1/*
2 * Copyright (c) 2014 Nicira, Inc.
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
53902038
TLSC
17#ifndef TNL_NEIGH_CACHE_H
18#define TNL_NEIGH_CACHE_H 1
a36de779
PS
19
20#include <errno.h>
21
22#include <inttypes.h>
23#include <stddef.h>
24#include <stdint.h>
25#include <string.h>
26#include <net/if.h>
27#include <sys/socket.h>
28
29#include "flow.h"
30#include "netdev.h"
31#include "packets.h"
32#include "util.h"
33
53902038
TLSC
34int tnl_neigh_snoop(const struct flow *flow, struct flow_wildcards *wc,
35 const char dev_name[]);
36int tnl_neigh_lookup(const char dev_name[], const struct in6_addr *dst,
37 struct eth_addr *mac);
38void tnl_neigh_cache_init(void);
39void tnl_neigh_cache_run(void);
a36de779
PS
40
41#endif