Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 1 | /* |
| 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 | #include "fib_entry.h" |
| 17 | #include "fib_entry_src.h" |
| 18 | #include "fib_path_list.h" |
| 19 | |
| 20 | /** |
| 21 | * Source initialisation Function |
| 22 | */ |
| 23 | static void |
| 24 | fib_entry_src_default_init (fib_entry_src_t *src) |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Source deinitialisation Function |
| 30 | */ |
| 31 | static void |
| 32 | fib_entry_src_default_deinit (fib_entry_src_t *src) |
| 33 | { |
| 34 | } |
| 35 | |
| 36 | static void |
| 37 | fib_entry_src_cover_change (fib_entry_src_t *src) |
| 38 | { |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Source deinitialisation Function |
| 43 | */ |
| 44 | static void |
| 45 | fib_entry_src_default_deinit (fib_entry_src_t *src) |
| 46 | { |
| 47 | } |
| 48 | |
| 49 | static void |
| 50 | fib_entry_src_default_path_add (fib_entry_src_t *src, |
| 51 | fib_protocol_t proto, |
| 52 | const ip46_address_t *next_hop, |
| 53 | u32 next_hop_sw_if_index, |
| 54 | u32 next_hop_fib_index, |
| 55 | u32 next_hop_weight) |
| 56 | { |
| 57 | } |
| 58 | |
| 59 | static void |
| 60 | fib_entry_src_default_path_remove (fib_entry_src_t *src, |
| 61 | fib_protocol_t proto, |
| 62 | const ip46_address_t *next_hop, |
| 63 | u32 next_hop_sw_if_index, |
| 64 | u32 next_hop_fib_index, |
| 65 | u32 next_hop_weight) |
| 66 | { |
| 67 | } |
| 68 | |
| 69 | |
| 70 | /* |
| 71 | * Source activate. |
| 72 | * Called when the source is teh new longer best source on the entry |
| 73 | */ |
| 74 | static void |
| 75 | fib_entry_src_default_activate (fib_entry_src_t *src, |
| 76 | const fib_entry_t *fib_entry) |
| 77 | { |
| 78 | } |
| 79 | |
| 80 | /* |
| 81 | * Source Deactivate. |
| 82 | * Called when the source is no longer best source on the entry |
| 83 | */ |
| 84 | static void |
| 85 | fib_entry_src_default_deactivate (fib_entry_src_t *src, |
| 86 | const fib_entry_t *fib_entry) |
| 87 | { |
| 88 | } |
| 89 | |
| 90 | static void |
| 91 | fib_entry_src_default_add (fib_entry_src_t *src, |
| 92 | fib_entry_flag_t flags, |
| 93 | fib_protocol_t proto) |
| 94 | { |
| 95 | } |
| 96 | |
| 97 | static void |
Neale Ranns | 8954199 | 2017-04-06 04:41:02 -0700 | [diff] [blame] | 98 | fib_entry_src_default_remove (fib_entry_src_t *src) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 99 | { |
| 100 | } |
| 101 | |
| 102 | const static fib_entry_src_vft_t default_src_vft = { |
| 103 | .fesv_init = fib_entry_src_default_init, |
| 104 | .fesv_deinit = fib_entry_src_default_deinit, |
| 105 | .fesv_add = fib_entry_src_default_add, |
| 106 | .fesv_remove = fib_entry_src_default_remove, |
| 107 | .fesv_path_add = fib_entry_src_default_path_add, |
| 108 | .fesv_path_remove = fib_entry_src_default_path_remove, |
| 109 | .fesv_activate = fib_entry_src_default_activate, |
| 110 | .fesv_deactivate = fib_entry_src_default_deactivate, |
| 111 | }; |
| 112 | |
| 113 | void |
| 114 | fib_entry_src_default_register (void) |
| 115 | { |
Neale Ranns | 3bab8f9 | 2019-12-04 06:11:00 +0000 | [diff] [blame] | 116 | fib_entry_src_behaviour_register (FIB_SOURCE_BH_DROP, |
| 117 | &default_src_vft); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 118 | } |