summaryrefslogtreecommitdiff
path: root/os/osdep.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/osdep.h')
-rw-r--r--os/osdep.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/os/osdep.h b/os/osdep.h
index 4ab988057..38c60c661 100644
--- a/os/osdep.h
+++ b/os/osdep.h
@@ -245,8 +245,14 @@ extern fd_set ClientsWithInput;
extern fd_set ClientsWriteBlocked;
extern fd_set OutputPending;
extern fd_set IgnoredClientsWithInput;
-
+
+#ifndef WIN32
extern int *ConnectionTranslation;
+#else
+extern int GetConnectionTranslation(int conn);
+extern void SetConnectionTranslation(int conn, int client);
+extern void ClearConnectionTranslation();
+#endif
extern Bool NewOutputPending;
extern Bool AnyClientsWriteBlocked;