diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2025-08-10 12:08:23 +0200 |
---|---|---|
committer | Sander Vrijders <sander@ouroboros.rocks> | 2025-08-11 10:15:32 +0200 |
commit | 5c9328203b277fc36550ba06720dd13e5940121b (patch) | |
tree | 92fb49323a0fdda7d696915800eb0af909fa7319 /src/ipcpd/common/connmgr.c | |
parent | 2fd016776bca60e0a2bff69a9f130e4c3415bb4c (diff) | |
download | ouroboros-5c9328203b277fc36550ba06720dd13e5940121b.tar.gz ouroboros-5c9328203b277fc36550ba06720dd13e5940121b.zip |
ipcpd: Remove old IPCP_CONN_WAIT_DIR build option
The IPCP_CONN_WAIT_DIR build option is not needed anymore with the
recent update to the DHT. Also cleans up some logging in the IPCP.
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/ipcpd/common/connmgr.c')
-rw-r--r-- | src/ipcpd/common/connmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcpd/common/connmgr.c b/src/ipcpd/common/connmgr.c index eed6238e..6dd5fed0 100644 --- a/src/ipcpd/common/connmgr.c +++ b/src/ipcpd/common/connmgr.c @@ -512,7 +512,7 @@ int connmgr_dealloc(enum comp_id id, case COMPID_DT: notifier_event(NOTIFY_DT_CONN_DEL, conn); break; -#if defined(BUILD_IPCP_UNICAST) && defined(IPCP_CONN_WAIT_DIR) +#if defined(BUILD_IPCP_UNICAST) case COMPID_MGMT: notifier_event(NOTIFY_MGMT_CONN_DEL, conn); break; |