]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - net_wins.c
cleaned up shadow volume culling somewhat
[xonotic/darkplaces.git] / net_wins.c
index 5a12f52c16d5865b1f40f0d931e269506c6b6f9c..16c1eb7a153339bc6db1abcf941b7f6558d35c93 100644 (file)
@@ -392,6 +392,20 @@ int WINS_CheckNewConnections (void)
 
 //=============================================================================
 
+int WINS_Recv (qbyte *buf, int len, struct qsockaddr *addr)
+{
+       return WINS_Read (net_acceptsocket, buf, len, addr);
+}
+
+//=============================================================================
+
+int WINS_Send (qbyte *buf, int len, struct qsockaddr *addr)
+{
+       return WINS_Write (net_acceptsocket, buf, len, addr);
+}
+
+//=============================================================================
+
 int WINS_Read (int socket, qbyte *buf, int len, struct qsockaddr *addr)
 {
        int addrlen = sizeof (struct qsockaddr);