<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in sdap_autofs.c</title>
    <link>http://src.iws.cs.ovgu.de/source/rss/solaris-userland/components/python/cx_oracle/Makefile</link>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2005</copyright>
    <generator>Java</generator>
    <item>
        <title>DP: Switch to new interface
    
    Reviewed-by: Sumit Bose &lt;sbose@redhat.com&gt;
    Reviewed-by: Jakub Hrozek &lt;jhrozek@redhat.com&gt;
    Reviewed-by: Lukáš Slebodník &lt;lslebodn@redhat.com&gt;</title>
        <description>/sssd/src/providers/ldap/sdap_autofs.c - dea636af4d1902a081ee891f1b19ee2f8729d759</description>
        <pubDate></pubDate>
        <dc:creator>Pavel Březina  &lt;pbrezina@redhat.com&gt;</dc:creator>
    </item>

    <item>
        <title>Rename dp_backend.h to backend.h
    
    Reviewed-by: Sumit Bose &lt;sbose@redhat.com&gt;
    Reviewed-by: Jakub Hrozek &lt;jhrozek@redhat.com&gt;
    Reviewed-by: Lukáš Slebodník &lt;lslebodn@redhat.com&gt;</title>
        <description>/sssd/src/providers/ldap/sdap_autofs.c - cc2d77d5218c188119fa954c856e858cbde76947</description>
        <pubDate></pubDate>
        <dc:creator>Pavel Březina  &lt;pbrezina@redhat.com&gt;</dc:creator>
    </item>

    <item>
        <title>Make DEBUG macro invocations variadic
    
    Use a script to update DEBUG macro invocations to use it as a variadic
    macro, supplying format string and its arguments directly, instead of
    wrapping them in parens.
    
    This script was used to update the code:
    
    grep -rwl --include '*.[hc]' DEBUG . |
        while read f; do
            mv "$f"{,.orig}
            perl -e \
                'use strict;
                 use File::Slurp;
                 my $text=read_file(\*STDIN);
                 $text=~s#(\bDEBUG\s*\([^(]+)\((.*?)\)\s*\)\s*;#$1$2);#gs;
                 print $text;' &lt; "$f.orig" &gt; "$f"
            rm "$f.orig"
        done
    
    Reviewed-by: Jakub Hrozek &lt;jhrozek@redhat.com&gt;
    Reviewed-by: Stephen Gallagher &lt;sgallagh@redhat.com&gt;
    Reviewed-by: Simo Sorce &lt;simo@redhat.com&gt;</title>
        <description>/sssd/src/providers/ldap/sdap_autofs.c - a3c8390d19593b1e5277d95bfb4ab206d4785150</description>
        <pubDate></pubDate>
        <dc:creator>Nikolai Kondrashov &lt;Nikolai.Kondrashov@redhat.com&gt;</dc:creator>
    </item>

    <item>
        <title>SYSDB: Drop the sysdb_ctx parameter from the autofs API</title>
        <description>/sssd/src/providers/ldap/sdap_autofs.c - e7d1cd14ce1a427007b1a7e9789dcb7e9619f84f</description>
        <pubDate></pubDate>
        <dc:creator>Jakub Hrozek &lt;jhrozek@redhat.com&gt;</dc:creator>
    </item>

    <item>
        <title>Add ldap_autofs_map_master_name option</title>
        <description>/sssd/src/providers/ldap/sdap_autofs.c - 407123c67114bf010cdad4418f291f9fb3762f4a</description>
        <pubDate></pubDate>
        <dc:creator>Cove Schneider &lt;cove@ilm.com&gt;</dc:creator>
    </item>

    <item>
        <title>LDAP: sdap_id_ctx might contain several connections
    
    With some LDAP server implementations, one server might provide
    different "views" of the identites on different ports. One example is
    the Active Directory Global catalog. The provider would contact
    different view depending on which operation it is performing and against
    which SSSD domain.
    
    At the same time, these views run on the same server, which means the same
    server options, enumeration, cleanup or Kerberos service should be used.
    So instead of using several different failover ports or several
    instances of sdap_id_ctx, this patch introduces a new "struct
    sdap_id_conn_ctx" that contains the connection cache to the particular
    view and an instance of "struct sdap_options" that contains the URI.
    
    No functional changes are present in this patch, currently all providers
    use a single connection. Multiple connections will be used later in the
    upcoming patches.</title>
        <description>/sssd/src/providers/ldap/sdap_autofs.c - dcb44c39dda9699cdd6488fd116a51ced0687de3</description>
        <pubDate></pubDate>
        <dc:creator>Jakub Hrozek &lt;jhrozek@redhat.com&gt;</dc:creator>
    </item>

    <item>
        <title>Add be_req_get_data() helper funciton.
    
    In preparation for making struct be_req opaque.</title>
        <description>/sssd/src/providers/ldap/sdap_autofs.c - cbaba2f47da96c4191971bce86f03afb3f88864a</description>
        <pubDate></pubDate>
        <dc:creator>Simo Sorce &lt;simo@redhat.com&gt;</dc:creator>
    </item>

    <item>
        <title>Add be_req_get_be_ctx() helper.
    
    In preparation for making be_req opaque</title>
        <description>/sssd/src/providers/ldap/sdap_autofs.c - 03abdaa21ecf562b714f204ca42379ff08626f75</description>
        <pubDate></pubDate>
        <dc:creator>Simo Sorce &lt;simo@redhat.com&gt;</dc:creator>
    </item>

    <item>
        <title>Introduce be_req_terminate() helper
    
    Call it everywhere instead of directly dereferencing be_req-&gt;fn
    This is in preparation of making be_req opaque.</title>
        <description>/sssd/src/providers/ldap/sdap_autofs.c - 8e5549e453558d4bebdec333a93e215d5d6ffaec</description>
        <pubDate></pubDate>
        <dc:creator>Simo Sorce &lt;simo@redhat.com&gt;</dc:creator>
    </item>

    <item>
        <title>Remove sysdb as a be context structure member
    
    The sysdb context is already available through the 'domain' structure.</title>
        <description>/sssd/src/providers/ldap/sdap_autofs.c - df0596ec12bc5091608371e2977f3111241e8caf</description>
        <pubDate></pubDate>
        <dc:creator>Simo Sorce &lt;simo@redhat.com&gt;</dc:creator>
    </item>

    <item>
        <title>Add domain argument to sysdb autofs functions</title>
        <description>/sssd/src/providers/ldap/sdap_autofs.c - 2913240aee51ce81195148a4d814e967f66839c4</description>
        <pubDate></pubDate>
        <dc:creator>Simo Sorce &lt;simo@redhat.com&gt;</dc:creator>
    </item>

    <item>
        <title>DP: invalidate all cached maps if a request for auto.master comes in
    
    If the Data Provider receives a request for the auto.master map, it
    passes on a flag to let the actual provider let know he should
    invalidate the existing maps</title>
        <description>/sssd/src/providers/ldap/sdap_autofs.c - 06cb67c391dd8c2b1542a7d87fb5568fdad448cb</description>
        <pubDate></pubDate>
        <dc:creator>Jakub Hrozek &lt;jhrozek@redhat.com&gt;</dc:creator>
    </item>

    <item>
        <title>AUTOFS: LDAP provider</title>
        <description>/sssd/src/providers/ldap/sdap_autofs.c - cc84fd46f356c4a36a721ab135a33ec77c93e34d</description>
        <pubDate></pubDate>
        <dc:creator>Jakub Hrozek &lt;jhrozek@redhat.com&gt;</dc:creator>
    </item>

</channel>
</rss>

