summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/network/core/tcp.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/network/core/tcp.h b/src/network/core/tcp.h
index 84863ca2f..1f5be946e 100644
--- a/src/network/core/tcp.h
+++ b/src/network/core/tcp.h
@@ -130,8 +130,6 @@ static inline bool IsValidNetworkClientSocketIndex(ClientIndex index)
#define FOR_ALL_CLIENT_SOCKETS_FROM(d, start) for (d = GetNetworkClientSocket(start); d != NULL; d = (d->index + 1U < GetNetworkClientSocketPoolSize()) ? GetNetworkClientSocket(d->index + 1U) : NULL) if (d->IsValid())
#define FOR_ALL_CLIENT_SOCKETS(d) FOR_ALL_CLIENT_SOCKETS_FROM(d, 0)
-typedef NetworkClientSocket NetworkTCPSocketHandler;
-
#endif /* ENABLE_NETWORK */
#endif /* NETWORK_CORE_TCP_H */