aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/x300/include/link_state_route_proto.h
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2014-10-07 09:39:25 +0200
committerMartin Braun <martin.braun@ettus.com>2014-10-07 09:39:25 +0200
commit5bd58bc309e959537e3e820abfa39ee629b140a5 (patch)
tree81e3a611134e02d9118f0aa846b7146234849fe8 /firmware/x300/include/link_state_route_proto.h
parent9f6a11173aef5e661100268bd746963d713adb91 (diff)
downloaduhd-5bd58bc309e959537e3e820abfa39ee629b140a5.tar.gz
uhd-5bd58bc309e959537e3e820abfa39ee629b140a5.tar.bz2
uhd-5bd58bc309e959537e3e820abfa39ee629b140a5.zip
Reorganized firmware/ subdirectory (x300->usrp3, zpu->usrp2)
Diffstat (limited to 'firmware/x300/include/link_state_route_proto.h')
-rw-r--r--firmware/x300/include/link_state_route_proto.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/firmware/x300/include/link_state_route_proto.h b/firmware/x300/include/link_state_route_proto.h
deleted file mode 100644
index 8feb3e717..000000000
--- a/firmware/x300/include/link_state_route_proto.h
+++ /dev/null
@@ -1,56 +0,0 @@
-
-// Copyright 2013 Ettus Research LLC
-
-#ifndef INCLUDED_LINK_STATE_ROUTE_PROTO_H
-#define INCLUDED_LINK_STATE_ROUTE_PROTO_H
-
-#include <stdint.h>
-#include <stddef.h>
-#include <stdbool.h>
-#include <lwip/ip_addr.h>
-
-//http://en.wikipedia.org/wiki/Link-state_routing_protocol
-
-//! Initialize internals and handler registration
-void link_state_route_proto_init(void);
-
-/*!
- * Advances the internal counter to determine expired entries.
- * Call this periodically, along with the other periodic calls.
- */
-void link_state_route_proto_tick(void);
-
-//! Initiate a periodic update to the neighbor table
-void link_state_route_proto_update(const uint8_t ethno);
-
-//! Flood the network with information about routes
-void link_state_route_proto_flood(const uint8_t ethno);
-
-/*!
- * Updates the causes cycle cache for the given source ethno.
- */
-void link_state_route_proto_update_cycle_cache(const uint8_t ethno);
-
-/*!
- * Determine if the given link is the cause of a cycle (aka routing loop)
- * This call does not run the algorithm, but rather checks the cache.
- * This call also differs from the one below, takes the ethnos.
- */
-bool link_state_route_proto_causes_cycle_cached(const uint8_t eth_src, const uint8_t eth_dst);
-
-//! Determine if the given link is the cause of a cycle (aka routing loop)
-bool link_state_route_proto_causes_cycle(const struct ip_addr *src, const struct ip_addr *dst);
-
-typedef struct
-{
- struct ip_addr node;
- struct ip_addr nbor;
-} ls_node_mapping_t;
-
-/*!
- * Get a pointer to the node mapping table.
- * The table length will be set to *length.
- */
-const ls_node_mapping_t *link_state_route_get_node_mapping(size_t *length);
-
-#endif /* INCLUDED_LINK_STATE_ROUTE_PROTO_H */