blob: eb4f09e7aaee03644e03562ca5790e3216d952fe [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * sr.c: ipv6 segment routing
3 *
4 * Copyright (c) 2013 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
Keith Burns (alagalah)7214cf12016-08-08 15:56:50 -070018/**
19 * @file
Pablo Camarillofb380952016-12-07 18:34:18 +010020 * @brief Segment Routing initialization
Keith Burns (alagalah)7214cf12016-08-08 15:56:50 -070021 *
22 */
Pablo Camarillofb380952016-12-07 18:34:18 +010023
Ed Warnickecb9cada2015-12-08 15:45:58 -070024#include <vnet/vnet.h>
Pablo Camarillo5d73eec2017-04-24 17:51:56 +020025#include <vnet/srv6/sr.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010026#include <vnet/fib/ip6_fib.h>
Neale Rannsa9374df2017-02-02 02:18:18 -080027#include <vnet/mfib/mfib_table.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010028#include <vnet/dpo/dpo.h>
Neale Rannsa9374df2017-02-02 02:18:18 -080029#include <vnet/dpo/replicate_dpo.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070030
Ed Warnickecb9cada2015-12-08 15:45:58 -070031ip6_sr_main_t sr_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070032
Keith Burns (alagalah)7214cf12016-08-08 15:56:50 -070033/**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010034 * @brief no-op lock function.
35 * The lifetime of the SR entry is managed by the control plane
36 */
Pablo Camarillofb380952016-12-07 18:34:18 +010037void
Neale Ranns0bfe5d82016-08-25 15:29:12 +010038sr_dpo_lock (dpo_id_t * dpo)
39{
40}
41
42/**
43 * @brief no-op unlock function.
44 * The lifetime of the SR entry is managed by the control plane
45 */
Pablo Camarillofb380952016-12-07 18:34:18 +010046void
Neale Ranns0bfe5d82016-08-25 15:29:12 +010047sr_dpo_unlock (dpo_id_t * dpo)
48{
49}
50
Neale Rannsa9374df2017-02-02 02:18:18 -080051/*
Pablo Camarillofb380952016-12-07 18:34:18 +010052* fd.io coding-style-patch-verification: ON
53*
54* Local Variables:
55* eval: (c-set-style "gnu")
56* End:
57*/