~ubuntu-branches/ubuntu/wily/openvswitch/wily

« back to all changes in this revision

Viewing changes to lib/tnl-ports.h

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-08-10 11:35:15 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20150810113515-575vj06oq29emxsn
Tags: 2.4.0~git20150810.97bab95-0ubuntu1
* New upstream snapshot from 2.4 branch:
  - d/*: Align any relevant packaging changes with upstream.
* d/*: wrap-and-sort.
* d/openvswitch-{common,vswitch}.install: Correct install location for
  bash completion files.
* d/tests/openflow.py: Explicitly use ovs-testcontroller as provided
  by 2.4.0 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
17
#ifndef TNL_PORT_H
 
18
#define TNL_PORT_H 1
 
19
 
 
20
#include <net/if.h>
 
21
#include <sys/socket.h>
 
22
 
 
23
#include "flow.h"
 
24
#include "packets.h"
 
25
#include "util.h"
 
26
 
 
27
odp_port_t tnl_port_map_lookup(struct flow *flow, struct flow_wildcards *wc);
 
28
 
 
29
void tnl_port_map_insert(odp_port_t port, ovs_be16 udp_port,
 
30
                         const char dev_name[]);
 
31
 
 
32
void tnl_port_map_delete(ovs_be16 udp_port);
 
33
 
 
34
void tnl_port_map_init(void);
 
35
 
 
36
#endif