NET: Rename TCP state values: UIP_ -> TCP_

This commit is contained in:
Gregory Nutt
2014-07-06 16:10:26 -06:00
parent ea6daaec6c
commit b77fda2c95
14 changed files with 123 additions and 123 deletions
+2 -2
View File
@@ -141,8 +141,8 @@ int net_startmonitor(FAR struct socket *psock)
* the monitoring callback.)
*/
if (!(conn->tcpstateflags == UIP_ESTABLISHED ||
conn->tcpstateflags == UIP_SYN_RCVD))
if (!(conn->tcpstateflags == TCP_ESTABLISHED ||
conn->tcpstateflags == TCP_SYN_RCVD))
{
connection_event(conn, UIP_CLOSE);
}