Bind inter-thread comminication sockets to INADDR_LOOPBACK instead of
author15 2003 Andrew Lanoix <alanoix@umich.edu>
Sat, 22 Nov 2003 19:28:04 +0000 (19:28 +0000)
committerAndy Lanoix <alanoix@src.gnome.org>
Sat, 22 Nov 2003 19:28:04 +0000 (19:28 +0000)
Sat Nov 22 14:16:51.15 2003  Andrew Lanoix  <alanoix@umich.edu>

* glib/giowin32.c: Bind inter-thread comminication
sockets to INADDR_LOOPBACK instead of INADDR_ANY.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/giowin32.c

index a5bd4219d1624e04a138f61505c2dbdf0caee6ef..c57480c177818497f7b758fff3b2690b77825fad 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Nov 22 14:16:51.15 2003  Andrew Lanoix  <alanoix@umich.edu>
+
+       * glib/giowin32.c: Bind inter-thread comminication 
+               sockets to INADDR_LOOPBACK instead of INADDR_ANY.
+
 Thu Nov 20 15:09:40 2003  Manish Singh  <yosh@gimp.org>
 
        * configure.in: Added G_GSIZE_FORMAT and friends.
index a5bd4219d1624e04a138f61505c2dbdf0caee6ef..c57480c177818497f7b758fff3b2690b77825fad 100644 (file)
@@ -1,3 +1,8 @@
+Sat Nov 22 14:16:51.15 2003  Andrew Lanoix  <alanoix@umich.edu>
+
+       * glib/giowin32.c: Bind inter-thread comminication 
+               sockets to INADDR_LOOPBACK instead of INADDR_ANY.
+
 Thu Nov 20 15:09:40 2003  Manish Singh  <yosh@gimp.org>
 
        * configure.in: Added G_GSIZE_FORMAT and friends.
index a5bd4219d1624e04a138f61505c2dbdf0caee6ef..c57480c177818497f7b758fff3b2690b77825fad 100644 (file)
@@ -1,3 +1,8 @@
+Sat Nov 22 14:16:51.15 2003  Andrew Lanoix  <alanoix@umich.edu>
+
+       * glib/giowin32.c: Bind inter-thread comminication 
+               sockets to INADDR_LOOPBACK instead of INADDR_ANY.
+
 Thu Nov 20 15:09:40 2003  Manish Singh  <yosh@gimp.org>
 
        * configure.in: Added G_GSIZE_FORMAT and friends.
index a5bd4219d1624e04a138f61505c2dbdf0caee6ef..c57480c177818497f7b758fff3b2690b77825fad 100644 (file)
@@ -1,3 +1,8 @@
+Sat Nov 22 14:16:51.15 2003  Andrew Lanoix  <alanoix@umich.edu>
+
+       * glib/giowin32.c: Bind inter-thread comminication 
+               sockets to INADDR_LOOPBACK instead of INADDR_ANY.
+
 Thu Nov 20 15:09:40 2003  Manish Singh  <yosh@gimp.org>
 
        * configure.in: Added G_GSIZE_FORMAT and friends.
index a5bd4219d1624e04a138f61505c2dbdf0caee6ef..c57480c177818497f7b758fff3b2690b77825fad 100644 (file)
@@ -1,3 +1,8 @@
+Sat Nov 22 14:16:51.15 2003  Andrew Lanoix  <alanoix@umich.edu>
+
+       * glib/giowin32.c: Bind inter-thread comminication 
+               sockets to INADDR_LOOPBACK instead of INADDR_ANY.
+
 Thu Nov 20 15:09:40 2003  Manish Singh  <yosh@gimp.org>
 
        * configure.in: Added G_GSIZE_FORMAT and friends.
index a5bd4219d1624e04a138f61505c2dbdf0caee6ef..c57480c177818497f7b758fff3b2690b77825fad 100644 (file)
@@ -1,3 +1,8 @@
+Sat Nov 22 14:16:51.15 2003  Andrew Lanoix  <alanoix@umich.edu>
+
+       * glib/giowin32.c: Bind inter-thread comminication 
+               sockets to INADDR_LOOPBACK instead of INADDR_ANY.
+
 Thu Nov 20 15:09:40 2003  Manish Singh  <yosh@gimp.org>
 
        * configure.in: Added G_GSIZE_FORMAT and friends.
index dde72e71e31f931b372b6fabdc8563cdeb4020d7..152c2c08bc7336104488a923dcc0a908a5ccf9e1 100644 (file)
@@ -356,7 +356,7 @@ init_reset_sockets (GIOWin32Channel *channel)
 
   local.sin_family = AF_INET;
   local.sin_port = 0;
-  local.sin_addr.s_addr = htonl (INADDR_ANY);
+  local.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
 
   if (bind (channel->reset_send, (struct sockaddr *)&local, sizeof (local)) == SOCKET_ERROR)
     {
@@ -366,7 +366,7 @@ init_reset_sockets (GIOWin32Channel *channel)
 
   local2.sin_family = AF_INET;
   local2.sin_port = 0;
-  local2.sin_addr.s_addr = htonl (INADDR_ANY);
+  local2.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
 
   channel->reset_recv = (gint) socket (AF_INET, SOCK_DGRAM, 0);
   if (channel->reset_recv == INVALID_SOCKET)