summaryrefslogtreecommitdiff
path: root/src/ipcpd/ipcp.h
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@intec.ugent.be>2016-05-15 22:42:47 +0200
committerdimitri staessens <dimitri.staessens@intec.ugent.be>2016-05-15 22:42:47 +0200
commit3f5b31d49139968a84c42d5d3067d06edefa3aae (patch)
treef860fa136bf8fcf4ee89881ac41bd39f6c7cd311 /src/ipcpd/ipcp.h
parent8f79d80e7fe7f52f310edddc73589f4f71457747 (diff)
downloadouroboros-3f5b31d49139968a84c42d5d3067d06edefa3aae.tar.gz
ouroboros-3f5b31d49139968a84c42d5d3067d06edefa3aae.zip
ipcpd: shim-udp: Revised locking
Simplified locking to take only two locks: the first lock guards the state of the ipcp. This lock must be held for writing on bootstrap and closing, and held for reading during all other operations. The second lock guards operations on flows, and must be held for writing during allocation and deallocation, and held for reading when sending sdu's. After adding a fd to FD_SET, the shim will wait for 1 ms to ensure that the FD is added to the select call.
Diffstat (limited to 'src/ipcpd/ipcp.h')
-rw-r--r--src/ipcpd/ipcp.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ipcpd/ipcp.h b/src/ipcpd/ipcp.h
index c9002d4d..70da0675 100644
--- a/src/ipcpd/ipcp.h
+++ b/src/ipcpd/ipcp.h
@@ -30,8 +30,6 @@
enum ipcp_state {
IPCP_INIT = 0,
- IPCP_ENROLLING,
- IPCP_BOOTSTRAPPING,
IPCP_ENROLLED,
IPCP_DISCONNECTED,
IPCP_SHUTDOWN