diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-27 11:08:01 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-28 10:24:54 +0200 |
commit | 8f88486a5a549e1b6644670e5eb011a9309f176b (patch) | |
tree | 42146dc93df8ff4ccb7b4d0e8d1b76f49d6b90a5 /src/ipcpd/normal/graph.h | |
parent | 53384bdca4f5e80f626e68e71ad2b82100b22735 (diff) | |
download | ouroboros-8f88486a5a549e1b6644670e5eb011a9309f176b.tar.gz ouroboros-8f88486a5a549e1b6644670e5eb011a9309f176b.zip |
ipcpd: normal: Remove graph_add_edge operation
This removes the graph_add_edge operation of the graph component. The
routing component now only listens to RO_MODIFY events, and updates
the graph accordingly.
Diffstat (limited to 'src/ipcpd/normal/graph.h')
-rw-r--r-- | src/ipcpd/normal/graph.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ipcpd/normal/graph.h b/src/ipcpd/normal/graph.h index 226092c7..70be8626 100644 --- a/src/ipcpd/normal/graph.h +++ b/src/ipcpd/normal/graph.h @@ -37,11 +37,6 @@ struct graph * graph_create(void); void graph_destroy(struct graph * graph); -int graph_add_edge(struct graph * graph, - uint64_t s_addr, - uint64_t d_addr, - qosspec_t qs); - int graph_update_edge(struct graph * graph, uint64_t s_addr, uint64_t d_addr, |