svn commit: samba r9705 - in branches/SAMBA_4_0: . source/lib/socket

tridge at samba.org tridge at samba.org
Sun Aug 28 02:37:50 GMT 2005


Author: tridge
Date: 2005-08-28 02:37:49 +0000 (Sun, 28 Aug 2005)
New Revision: 9705

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

Log:
 r9685 at blu:  tridge | 2005-08-27 19:43:44 +1000
 set the backend_name on socket_accept() too

Modified:
   branches/SAMBA_4_0/
   branches/SAMBA_4_0/source/lib/socket/socket.c
   branches/SAMBA_4_0/source/lib/socket/socket_ipv4.c
   branches/SAMBA_4_0/source/lib/socket/socket_ipv6.c
   branches/SAMBA_4_0/source/lib/socket/socket_unix.c


Changeset:

Property changes on: branches/SAMBA_4_0
___________________________________________________________________
Name: svk:merge
   - a953eb74-4aff-0310-a63c-855d20285ebb:/local/samba4:9684
   + a953eb74-4aff-0310-a63c-855d20285ebb:/local/samba4:9685

Modified: branches/SAMBA_4_0/source/lib/socket/socket.c
===================================================================
--- branches/SAMBA_4_0/source/lib/socket/socket.c	2005-08-28 02:37:38 UTC (rev 9704)
+++ branches/SAMBA_4_0/source/lib/socket/socket.c	2005-08-28 02:37:49 UTC (rev 9705)
@@ -53,6 +53,7 @@
 
 	(*new_sock)->private_data = NULL;
 	(*new_sock)->ops = ops;
+	(*new_sock)->backend_name = NULL;
 
 	status = (*new_sock)->ops->fn_init((*new_sock));
 	if (!NT_STATUS_IS_OK(status)) {

Modified: branches/SAMBA_4_0/source/lib/socket/socket_ipv4.c
===================================================================
--- branches/SAMBA_4_0/source/lib/socket/socket_ipv4.c	2005-08-28 02:37:38 UTC (rev 9704)
+++ branches/SAMBA_4_0/source/lib/socket/socket_ipv4.c	2005-08-28 02:37:49 UTC (rev 9705)
@@ -226,6 +226,7 @@
 
 	(*new_sock)->private_data	= NULL;
 	(*new_sock)->ops		= sock->ops;
+	(*new_sock)->backend_name	= sock->backend_name;
 
 	return NT_STATUS_OK;
 }

Modified: branches/SAMBA_4_0/source/lib/socket/socket_ipv6.c
===================================================================
--- branches/SAMBA_4_0/source/lib/socket/socket_ipv6.c	2005-08-28 02:37:38 UTC (rev 9704)
+++ branches/SAMBA_4_0/source/lib/socket/socket_ipv6.c	2005-08-28 02:37:49 UTC (rev 9705)
@@ -203,6 +203,7 @@
 
 	(*new_sock)->private_data	= NULL;
 	(*new_sock)->ops		= sock->ops;
+	(*new_sock)->backend_name	= sock->backend_name;
 
 	return NT_STATUS_OK;
 }

Modified: branches/SAMBA_4_0/source/lib/socket/socket_unix.c
===================================================================
--- branches/SAMBA_4_0/source/lib/socket/socket_unix.c	2005-08-28 02:37:38 UTC (rev 9704)
+++ branches/SAMBA_4_0/source/lib/socket/socket_unix.c	2005-08-28 02:37:49 UTC (rev 9705)
@@ -200,6 +200,7 @@
 
 	(*new_sock)->private_data	= NULL;
 	(*new_sock)->ops		= sock->ops;
+	(*new_sock)->backend_name	= sock->backend_name;
 
 	return NT_STATUS_OK;
 }



More information about the samba-cvs mailing list