]> git.meshlink.io Git - meshlink-tiny/blobdiff - src/meshlink-tiny++.h
Remove the declaration of meshlink_get_node_reachability().
[meshlink-tiny] / src / meshlink-tiny++.h
index 4793ea0f198704d05eb02259f5f4ccf223568157..b76fc56f8f4c9d98bf47cc752c7935e88f0b4e54 100644 (file)
@@ -241,20 +241,6 @@ public:
                return (node *)meshlink_get_node(handle, name);
        }
 
-       /// Get a node's reachability status.
-       /** This function returns the current reachability of a given node, and the times of the last state changes.
-        *  If a given state change never happened, the time returned will be 0.
-        *
-        *  @param node              A pointer to a meshlink::node describing the node.
-        *  @param last_reachable    A pointer to a time_t variable that will be filled in with the last time the node became reachable.
-        *  @param last_unreachable  A pointer to a time_t variable that will be filled in with the last time the node became unreachable.
-        *
-        *  @return                  This function returns true if the node is currently reachable, false otherwise.
-        */
-       bool get_node_reachability(node *node, time_t *last_reachable = NULL, time_t *last_unreachable = NULL) {
-               return meshlink_get_node_reachability(handle, node, last_reachable, last_unreachable);
-       }
-
        /// Get a handle for our own node.
        /** This function returns a handle for the local node.
         *