<feed xmlns='http://www.w3.org/2005/Atom'>
<title>samba.git/source4/ldap_server/ldap_bind.c, branch talloc-2.1.2</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/'/>
<entry>
<title>s4:ldap_server: make use of gensec_update_ev()</title>
<updated>2014-03-26T23:36:31+00:00</updated>
<author>
<name>Stefan Metzmacher</name>
<email>metze@samba.org</email>
</author>
<published>2013-12-13T18:35:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=99e8bea5d5d475bdfa730fc260b2660a8f97b4d8'/>
<id>99e8bea5d5d475bdfa730fc260b2660a8f97b4d8</id>
<content type='text'>
Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;
Reviewed-by: Andrew Bartlett &lt;abartlet@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;
Reviewed-by: Andrew Bartlett &lt;abartlet@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>gensec: move event context from gensec_*_init() to gensec_update()</title>
<updated>2011-10-18T02:13:33+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2011-10-17T07:22:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=e7d5f0a357c42593a015b80390dedf920117a7e2'/>
<id>e7d5f0a357c42593a015b80390dedf920117a7e2</id>
<content type='text'>
This avoids keeping the event context around on a the gensec_security
context structure long term.

In the Samba3 server, the event context we either supply is a NULL
pointer as no server-side modules currently use the event context.

Andrew Bartlett

Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This avoids keeping the event context around on a the gensec_security
context structure long term.

In the Samba3 server, the event context we either supply is a NULL
pointer as no server-side modules currently use the event context.

Andrew Bartlett

Signed-off-by: Stefan Metzmacher &lt;metze@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>gensec: clarify memory ownership for gensec_session_info() and gensec_session_key()</title>
<updated>2011-08-03T08:48:02+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2011-08-01T05:39:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=35b309fa0cac9341f364243b03ebfcc80f74198e'/>
<id>35b309fa0cac9341f364243b03ebfcc80f74198e</id>
<content type='text'>
This is slightly less efficient, because we no longer keep a cache on
the gensec structures, but much clearer in terms of memory ownership.
Both gensec_session_info() and gensec_session_key() now take a mem_ctx
and put the result only on that context.

Some duplication of memory in the callers (who were rightly uncertain
about who was the rightful owner of the returned memory) has been
removed to compensate for the internal copy.

Andrew Bartlett
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is slightly less efficient, because we no longer keep a cache on
the gensec structures, but much clearer in terms of memory ownership.
Both gensec_session_info() and gensec_session_key() now take a mem_ctx
and put the result only on that context.

Some duplication of memory in the callers (who were rightly uncertain
about who was the rightful owner of the returned memory) has been
removed to compensate for the internal copy.

Andrew Bartlett
</pre>
</div>
</content>
</entry>
<entry>
<title>s4-nterr: move auth_nt_status_squash to nt_status_squash and move to nterr.c</title>
<updated>2011-03-04T00:18:42+00:00</updated>
<author>
<name>Günther Deschner</name>
<email>gd@samba.org</email>
</author>
<published>2011-03-03T00:05:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=dc35442fb163c6f14cf8c5730056a4a094ead85a'/>
<id>dc35442fb163c6f14cf8c5730056a4a094ead85a</id>
<content type='text'>
Guenther
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Guenther
</pre>
</div>
</content>
</entry>
<entry>
<title>ldb: use #include &lt;ldb.h&gt; for ldb</title>
<updated>2011-02-10T05:51:07+00:00</updated>
<author>
<name>Andrew Tridgell</name>
<email>tridge@samba.org</email>
</author>
<published>2011-02-10T03:12:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=8dc92c8f71311e95a3a3c297b32ed46477228f56'/>
<id>8dc92c8f71311e95a3a3c297b32ed46477228f56</id>
<content type='text'>
thi ensures we are using the header corresponding to the version of
ldb we're linking against. Otherwise we could use the system ldb for
link and the in-tree one for include

Pair-Programmed-With: Andrew Bartlett &lt;abartlet@samba.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
thi ensures we are using the header corresponding to the version of
ldb we're linking against. Otherwise we could use the system ldb for
link and the in-tree one for include

Pair-Programmed-With: Andrew Bartlett &lt;abartlet@samba.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>s4-ldap_server Allow multiple binds on LDAP server</title>
<updated>2011-01-06T23:02:23+00:00</updated>
<author>
<name>Andrew Bartlett</name>
<email>abartlet@samba.org</email>
</author>
<published>2011-01-06T04:25:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=a7bdb491885f6afd54604d8a968c12b6015daa2d'/>
<id>a7bdb491885f6afd54604d8a968c12b6015daa2d</id>
<content type='text'>
Autobuild-User: Andrew Bartlett &lt;abartlet@samba.org&gt;
Autobuild-Date: Fri Jan  7 00:02:23 CET 2011 on sn-devel-104
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Autobuild-User: Andrew Bartlett &lt;abartlet@samba.org&gt;
Autobuild-Date: Fri Jan  7 00:02:23 CET 2011 on sn-devel-104
</pre>
</div>
</content>
</entry>
<entry>
<title>s4/auth: Add logon_parameters to authenticate_username_pw</title>
<updated>2010-11-05T06:32:43+00:00</updated>
<author>
<name>Anatoliy Atanasov</name>
<email>anatoliy.atanasov@postpath.com</email>
</author>
<published>2010-11-04T22:00:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=211f6d5f557c7a737f3ccc1b4ef592c0ea8d7b94'/>
<id>211f6d5f557c7a737f3ccc1b4ef592c0ea8d7b94</id>
<content type='text'>
We need to be able to set the logon parameters in the same way as in the
ntlm server so we can handle openldap simple authentication call correctly.

Autobuild-User: Anatoliy Atanasov &lt;anatoliy@samba.org&gt;
Autobuild-Date: Fri Nov  5 06:32:43 UTC 2010 on sn-devel-104
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We need to be able to set the logon parameters in the same way as in the
ntlm server so we can handle openldap simple authentication call correctly.

Autobuild-User: Anatoliy Atanasov &lt;anatoliy@samba.org&gt;
Autobuild-Date: Fri Nov  5 06:32:43 UTC 2010 on sn-devel-104
</pre>
</div>
</content>
</entry>
<entry>
<title>s4:ldap_server: rewrite to socket layer to use tstream</title>
<updated>2010-10-08T11:55:26+00:00</updated>
<author>
<name>Stefan Metzmacher</name>
<email>metze@samba.org</email>
</author>
<published>2010-09-22T12:24:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=61c7b67df9ba484c0e810c07c8da852edf1ef2fc'/>
<id>61c7b67df9ba484c0e810c07c8da852edf1ef2fc</id>
<content type='text'>
This should make our sasl and tls handling much more robust
against partial sent pdus.

metze

Autobuild-User: Stefan Metzmacher &lt;metze@samba.org&gt;
Autobuild-Date: Fri Oct  8 11:55:26 UTC 2010 on sn-devel-104
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This should make our sasl and tls handling much more robust
against partial sent pdus.

metze

Autobuild-User: Stefan Metzmacher &lt;metze@samba.org&gt;
Autobuild-Date: Fri Oct  8 11:55:26 UTC 2010 on sn-devel-104
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "s4:ldap_server: rewrite to socket layer to use tstream"</title>
<updated>2010-10-07T10:31:18+00:00</updated>
<author>
<name>Stefan Metzmacher</name>
<email>metze@samba.org</email>
</author>
<published>2010-10-05T05:47:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=ab31d9aac9a02756cf5af313ed36fc549a8f4b67'/>
<id>ab31d9aac9a02756cf5af313ed36fc549a8f4b67</id>
<content type='text'>
This reverts commit b53fbc75acc525f2e2450370e704a62791271788.

There are problems with problems with broken gnutls versions.

We can readd this once we have the needed configure checks to
detect the bug in gnutls. See https://bugzilla.samba.org/show_bug.cgi?id=7218.

metze

Autobuild-User: Stefan Metzmacher &lt;metze@samba.org&gt;
Autobuild-Date: Thu Oct  7 10:31:18 UTC 2010 on sn-devel-104
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit b53fbc75acc525f2e2450370e704a62791271788.

There are problems with problems with broken gnutls versions.

We can readd this once we have the needed configure checks to
detect the bug in gnutls. See https://bugzilla.samba.org/show_bug.cgi?id=7218.

metze

Autobuild-User: Stefan Metzmacher &lt;metze@samba.org&gt;
Autobuild-Date: Thu Oct  7 10:31:18 UTC 2010 on sn-devel-104
</pre>
</div>
</content>
</entry>
<entry>
<title>s4:ldap_server: rewrite to socket layer to use tstream</title>
<updated>2010-10-04T19:42:19+00:00</updated>
<author>
<name>Stefan Metzmacher</name>
<email>metze@samba.org</email>
</author>
<published>2010-09-22T12:24:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=b53fbc75acc525f2e2450370e704a62791271788'/>
<id>b53fbc75acc525f2e2450370e704a62791271788</id>
<content type='text'>
This should make our sasl and tls handling much more robust
against partial sent pdus.

metze
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This should make our sasl and tls handling much more robust
against partial sent pdus.

metze
</pre>
</div>
</content>
</entry>
</feed>
