-
Notifications
You must be signed in to change notification settings - Fork 40
/
ip_route.cpp
128 lines (99 loc) · 3.1 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// Copyright (c) 2013 Arista Networks, Inc. All rights reserved.
// Arista Networks, Inc. Confidential and Proprietary.
#include "eos/ip_route.h"
#include "impl.h"
namespace eos {
class ip_route_mgr_impl : public ip_route_mgr {
public:
ip_route_mgr_impl() {
}
void resync_complete() {
// TODO: No op impl.
}
void resync_init() {
// TODO: No op impl.
}
uint32_t tag() const {
return 0; // TODO: No op impl.
}
void tag_is(uint32_t tag) {
// TODO: No op impl.
}
ip_route_iter_t ip_route_iter() const {
ip_route_iter_t * nop = 0;
return *nop; // TODO: No op impl.
}
virtual ip_route_iter_t ip_route_iter(std::string const & vrfName) const {
ip_route_iter_t * nop = 0;
return *nop; // TODO: No op impl.
}
ip_route_via_iter_t ip_route_via_iter(ip_route_key_t const & key) const {
ip_route_via_iter_t * nop = 0;
return *nop; // TODO: No op impl.
}
ip_route_via_iter_t ip_route_via_iter(ip_route_key_t const &,
std::string vrfName) const {
ip_route_via_iter_t * nop = 0;
return *nop; // TODO: No op impl.
}
bool exists(ip_route_key_t const &, std::string vrfName) const {
return false; // TODO: No op impl.
}
bool exists(const ip_route_key_t & route_key) const {
return false; // TODO: No op impl.
}
bool exists(const ip_route_via_t & route_via) const {
return false; // TODO: No op impl.
}
bool exists(const ip_route_via_t & route_via,
std::string vrfName) const {
return false; // TODO: No op impl.
}
ip_route_t ip_route(ip_route_key_t const & route_key) {
// TODO: No op impl.
return ip_route_t();
}
virtual ip_route_t ip_route(ip_route_key_t const &,
std::string vrfName) {
// TODO: No op impl.
return ip_route_t();
}
void ip_route_set(const ip_route_t & route) {
// TODO: No op impl.
}
void ip_route_set(const ip_route_t & route,
ip_route_action_t expected_type) {
// TODO: No op impl.
}
void ip_route_set(ip_route_t const &,
std::string vrfName) {
// TODO: No op impl.
}
void ip_route_del(ip_route_key_t const &,
std::string vrfName) {
// TODO: No op impl.
}
void ip_route_del(const ip_route_key_t & route_key) {
// TODO: No op impl.
}
void ip_route_via_set(const ip_route_via_t & route_via) {
// TODO: No op impl.
}
void ip_route_via_del(const ip_route_via_t & route_via) {
// TODO: No op impl.
}
void ip_route_via_set(const ip_route_via_t & route_via,
std::string vrfName) {
// TODO: No op impl.
}
void ip_route_via_del(const ip_route_via_t & route_via,
std::string vrfName) {
// TODO: No op impl.
}
};
DEFINE_STUB_MGR_CTOR(ip_route_mgr)
ip_route_iter_t
ip_route_mgr::ip_route_iter( std::string vrf ) const {
return static_cast<const ip_route_mgr_impl * >( this )->ip_route_iter( vrf );
}
} // end namespace eos