diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-09-02 11:09:13 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-09-02 11:13:14 +0200 |
commit | ad28e916756f7075a06f6b54d456676d0c081b36 (patch) | |
tree | 2bf62382b76fa87fab0397f2e43d423c7698b7a4 /src/ipcpd/shim-eth-llc | |
parent | fe197a226c0a7755f19a2956294ba435701a42ea (diff) | |
download | ouroboros-ad28e916756f7075a06f6b54d456676d0c081b36.tar.gz ouroboros-ad28e916756f7075a06f6b54d456676d0c081b36.zip |
lib: ipcp: Decouple flow_dealloc
Sending a dealloc to the irmd moved to its own call.
Diffstat (limited to 'src/ipcpd/shim-eth-llc')
-rw-r--r-- | src/ipcpd/shim-eth-llc/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcpd/shim-eth-llc/main.c b/src/ipcpd/shim-eth-llc/main.c index d1100001..a1ded117 100644 --- a/src/ipcpd/shim-eth-llc/main.c +++ b/src/ipcpd/shim-eth-llc/main.c @@ -599,7 +599,7 @@ static int eth_llc_ipcp_flow_dealloc_req(uint8_t ssap, pthread_rwlock_unlock(&shim_data(_ipcp)->flows_lock); pthread_rwlock_unlock(&_ipcp->state_lock); - ipcp_flow_dealloc(0, port_id); + irm_flow_dealloc(port_id); LOG_DBG("Flow with port_id %d deallocated.", port_id); |