]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - net_loop.c
Thanks to IceDagger for pointing out this important optimization to multipass specula...
[xonotic/darkplaces.git] / net_loop.c
index 8424ca9cccd7ce5592e15afac0de12c8d0d042ab..47d8d0e166f38a6b4d7bd6283a1def630770ddbe 100644 (file)
@@ -39,6 +39,11 @@ void Loop_Shutdown (void)
 }
 
 
+void Loop_Heartbeat (const char *master)
+{
+}
+
+
 void Loop_Listen (qboolean state)
 {
 }
@@ -62,7 +67,13 @@ void Loop_SearchForHosts (qboolean xmit)
 }
 
 
-qsocket_t *Loop_Connect (char *host)
+qboolean Loop_SearchForInetHosts (const char *master)
+{
+       return false;
+}
+
+
+qsocket_t *Loop_Connect (const char *host)
 {
        if (strcmp(host,"local") != 0)
                return NULL;
@@ -244,3 +255,4 @@ void Loop_Close (qsocket_t *sock)
        else
                loop_server = NULL;
 }
+