1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-15 23:24:37 +03:00

r11714: put in a workaround for a winbind problem volker asked me about. The

problem is that winbind currently relies on being able to receive on a
smb connection from within the same connections receive routine. This
means it relies on a non-serialised connection, so disable the
serialisation until winbind is fixed.

The correct fix will be to get rid of full_request() in dcerpc.c so
that bind requests can be fully async.
This commit is contained in:
Andrew Tridgell 2005-11-14 03:48:55 +00:00 committed by Gerald (Jerry) Carter
parent 6a47cd65a8
commit c4115293d8

View File

@ -122,8 +122,11 @@ struct smbcli_transport *smbcli_transport_init(struct smbcli_socket *sock,
transport);
packet_set_fde(transport->packet, transport->socket->event.fde);
#if 0
/* winbind relies on non-serialised connections for dcerpc bind. Once that is
fixed we can go back to serialised connections */
packet_set_serialise(transport->packet);
#endif
talloc_set_destructor(transport, transport_destructor);
return transport;