summaryrefslogtreecommitdiffstats
path: root/mmss/monitor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'mmss/monitor.hpp')
-rw-r--r--mmss/monitor.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/mmss/monitor.hpp b/mmss/monitor.hpp
index 7ce3816..36855af 100644
--- a/mmss/monitor.hpp
+++ b/mmss/monitor.hpp
@@ -41,10 +41,10 @@ public:
virtual void handle_init(node_t *node, const uint8_t *node_id, size_t len) = 0;
- virtual void handle_neigh(node_t *node, gmrf_iface_t *iface, const gmrf_addr_t *addr, float rxcost, float txcost) = 0;
- virtual void handle_neigh_lost(node_t *node, gmrf_iface_t *iface, const gmrf_addr_t *addr) = 0;
+ virtual void handle_neigh(node_t *node, iface_t *iface, const gmrf_addr_t *addr, float rxcost, float txcost) = 0;
+ virtual void handle_neigh_lost(node_t *node, iface_t *iface, const gmrf_addr_t *addr) = 0;
- virtual void handle_route(node_t *node, const uint8_t *node_id, size_t len, gmrf_iface_t *iface, const gmrf_addr_t *addr, int metric) = 0;
+ virtual void handle_route(node_t *node, const uint8_t *node_id, size_t len, iface_t *iface, const gmrf_addr_t *addr, int metric) = 0;
virtual void handle_route_lost(node_t *node, const uint8_t *node_id, size_t len) = 0;
};