First fix for "bug #20900 : Potential crash error problem with netconn_peer & netconn_addr". Introduce NETCONN_LISTEN netconn_state and remove obsolete ones (NETCONN_RECV & NETCONN_ACCEPT).

This commit is contained in:
fbernon
2007-08-27 10:08:53 +00:00
parent 5e7b7cba31
commit 54c1025ec0
4 changed files with 8 additions and 3 deletions

View File

@@ -74,8 +74,7 @@ enum netconn_type {
enum netconn_state {
NETCONN_NONE,
NETCONN_WRITE,
NETCONN_ACCEPT,
NETCONN_RECV,
NETCONN_LISTEN,
NETCONN_CONNECT,
NETCONN_CLOSE
};