blob: 48f4b2bf8a5fb2d450f4f1631f3e5edf683c8a95 [file] [log] [blame]
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef __CLASSIFY_DPO_H__
17#define __CLASSIFY_DPO_H__
18
19#include <vnet/vnet.h>
20#include <vnet/mpls/packet.h>
21#include <vnet/dpo/dpo.h>
22
23/**
24 * A representation of an MPLS label for imposition in the data-path
25 */
26typedef struct classify_dpo_t
27{
Neale Ranns8c1bebe2016-10-28 06:31:54 -070028 dpo_proto_t cd_proto;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010029
30 u32 cd_table_index;
31
32 /**
33 * Number of locks/users of the label
34 */
35 u16 cd_locks;
36} classify_dpo_t;
37
Neale Ranns8c1bebe2016-10-28 06:31:54 -070038extern index_t classify_dpo_create(dpo_proto_t proto,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010039 u32 classify_table_index);
40
41extern u8* format_classify_dpo(u8 *s, va_list *args);
42
43/*
44 * Encapsulation violation for fast data-path access
45 */
46extern classify_dpo_t *classify_dpo_pool;
47
48static inline classify_dpo_t *
49classify_dpo_get (index_t index)
50{
51 return (pool_elt_at_index(classify_dpo_pool, index));
52}
53
54extern void classify_dpo_module_init(void);
55
56#endif