aboutsummaryrefslogtreecommitdiffstats
path: root/hicn-light/src/hicn/strategies/local_prefixes.h
blob: 9d7d8ec782dfc4fb062dac4f73a96fed29040819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 * Copyright (c) 2021-2022 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * struct used to store prefixes that are served locally.
 * these prefixes are used in mapme messages to tell to the server which
 * path to use to retrive the content produced locally.
 * using this strategy the path selection done by the client can be
 * replicated at the server
 */

#ifndef HICNLIGHT_LOCAL_PREFIXES_H
#define HICNLIGHT_LOCAL_PREFIXES_H

#include <hicn/name.h>

typedef struct local_prefixes_s local_prefixes_t;

local_prefixes_t* create_local_prefixes();

void free_local_prefixes(local_prefixes_t* lp);

unsigned local_prefixes_get_len(local_prefixes_t* prefixes);

void local_prefixes_add_prefixes(local_prefixes_t* prefixes,
                                 local_prefixes_t* new_prefixes);

void local_prefixes_add_prefix(local_prefixes_t* prefixes,
                               const hicn_prefix_t* prefix);

void update_remote_node_paths(const void* nexthops, const void* forwarder,
                              local_prefixes_t* prefixes);

#endif /* HICNLIGHT_LOCAL_PREFIXES */