svn commit: samba r21704 - in branches: SAMBA_3_0/source/nsswitch SAMBA_3_0_25/source/nsswitch

herb at samba.org herb at samba.org
Mon Mar 5 18:20:37 GMT 2007


Author: herb
Date: 2007-03-05 18:20:36 +0000 (Mon, 05 Mar 2007)
New Revision: 21704

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=21704

Log:
open sockets immediately in process_loop

Modified:
   branches/SAMBA_3_0/source/nsswitch/winbindd.c
   branches/SAMBA_3_0_25/source/nsswitch/winbindd.c


Changeset:
Modified: branches/SAMBA_3_0/source/nsswitch/winbindd.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/winbindd.c	2007-03-05 17:02:20 UTC (rev 21703)
+++ branches/SAMBA_3_0/source/nsswitch/winbindd.c	2007-03-05 18:20:36 UTC (rev 21704)
@@ -726,6 +726,15 @@
 	int maxfd, listen_sock, listen_priv_sock, selret;
 	struct timeval timeout, ev_timeout;
 
+	/* Open Sockets here to get stuff going ASAP */
+	listen_sock = open_winbindd_socket();
+	listen_priv_sock = open_winbindd_priv_socket();
+
+	if (listen_sock == -1 || listen_priv_sock == -1) {
+		perror("open_winbind_socket");
+		exit(1);
+	}
+
 	/* We'll be doing this a lot */
 
 	/* Handle messages */
@@ -745,14 +754,6 @@
 
 	/* Initialise fd lists for select() */
 
-	listen_sock = open_winbindd_socket();
-	listen_priv_sock = open_winbindd_priv_socket();
-
-	if (listen_sock == -1 || listen_priv_sock == -1) {
-		perror("open_winbind_socket");
-		exit(1);
-	}
-
 	maxfd = MAX(listen_sock, listen_priv_sock);
 
 	FD_ZERO(&r_fds);

Modified: branches/SAMBA_3_0_25/source/nsswitch/winbindd.c
===================================================================
--- branches/SAMBA_3_0_25/source/nsswitch/winbindd.c	2007-03-05 17:02:20 UTC (rev 21703)
+++ branches/SAMBA_3_0_25/source/nsswitch/winbindd.c	2007-03-05 18:20:36 UTC (rev 21704)
@@ -726,6 +726,15 @@
 	int maxfd, listen_sock, listen_priv_sock, selret;
 	struct timeval timeout, ev_timeout;
 
+	/* Open Sockets here to get stuff going ASAP */
+	listen_sock = open_winbindd_socket();
+	listen_priv_sock = open_winbindd_priv_socket();
+
+	if (listen_sock == -1 || listen_priv_sock == -1) {
+		perror("open_winbind_socket");
+		exit(1);
+	}
+
 	/* We'll be doing this a lot */
 
 	/* Handle messages */
@@ -745,14 +754,6 @@
 
 	/* Initialise fd lists for select() */
 
-	listen_sock = open_winbindd_socket();
-	listen_priv_sock = open_winbindd_priv_socket();
-
-	if (listen_sock == -1 || listen_priv_sock == -1) {
-		perror("open_winbind_socket");
-		exit(1);
-	}
-
 	maxfd = MAX(listen_sock, listen_priv_sock);
 
 	FD_ZERO(&r_fds);



More information about the samba-cvs mailing list