summaryrefslogtreecommitdiffstats
path: root/mmss/context.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'mmss/context.hpp')
-rw-r--r--mmss/context.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/mmss/context.hpp b/mmss/context.hpp
index 60fa4c3..4c7e478 100644
--- a/mmss/context.hpp
+++ b/mmss/context.hpp
@@ -63,17 +63,17 @@ public:
monitor->handle_init(node, node_id, len);
}
- void node_neigh(node_t *node, gmrf_iface_t *iface, const gmrf_addr_t *addr, float rxcost, float txcost) {
+ void node_neigh(node_t *node, iface_t *iface, const gmrf_addr_t *addr, float rxcost, float txcost) {
for (auto monitor : monitors)
monitor->handle_neigh(node, iface, addr, rxcost, txcost);
}
- void node_neigh_lost(node_t *node, gmrf_iface_t *iface, const gmrf_addr_t *addr) {
+ void node_neigh_lost(node_t *node, iface_t *iface, const gmrf_addr_t *addr) {
for (auto monitor : monitors)
monitor->handle_neigh_lost(node, iface, addr);
}
- void node_route(node_t *node, const uint8_t *node_id, size_t len, gmrf_iface_t *iface, const gmrf_addr_t *addr, int metric) {
+ void node_route(node_t *node, const uint8_t *node_id, size_t len, iface_t *iface, const gmrf_addr_t *addr, int metric) {
for (auto monitor : monitors)
monitor->handle_route(node, node_id, len, iface, addr, metric);
}