-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathip_route.cpp
70 lines (55 loc) · 1.43 KB
/
ip_route.cpp
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Copyright (c) 2013 Arista Networks, Inc. All rights reserved.
// Arista Networks, Inc. Confidential and Proprietary.
#include "eos/ip_route.h"
namespace eos {
ip_route_mgr::ip_route_mgr() {
}
class ip_route_mgr_impl : public ip_route_mgr {
public:
ip_route_mgr_impl() {
}
};
ip_route_mgr *
get_ip_route_mgr() {
static ip_route_mgr_impl impl;
return &impl;
}
void
ip_route_mgr::ip_route_foreach(callback_func_route handler, void *context) {
// TODO: No op impl.
}
void
ip_route_mgr::ip_route_foreach(callback_func_route handler, void *context,
const ip_route_t & bookmark) {
// TODO: No op impl.
}
void
ip_route_mgr::ip_route_via_foreach(const ip_route_key_t & route_key,
callback_func_via handler, void *context) {
// TODO: No op impl.
}
bool
ip_route_mgr::exists(const ip_route_key_t & route_key) const {
return false; // TODO: No op impl.
}
bool
ip_route_mgr::exists(const ip_route_via_t & route_via) const {
return false; // TODO: No op impl.
}
void
ip_route_mgr::ip_route_set(const ip_route_t & route) {
// TODO: No op impl.
}
void
ip_route_mgr::ip_route_del(const ip_route_key_t & route_key) {
// TODO: No op impl.
}
void
ip_route_mgr::ip_route_via_set(const ip_route_via_t & route_via) {
// TODO: No op impl.
}
void
ip_route_mgr::ip_route_via_del(const ip_route_via_t & route_via) {
// TODO: No op impl.
}
} // end namespace eos