summaryrefslogtreecommitdiffstats
path: root/src/providers/proxy/proxy_services.c
Commit message (Collapse)AuthorAgeFilesLines
* PROXY: Preserve service name in proxy providerMichal Zidek2014-11-131-1/+21
| | | | | | | | Fixes: https://fedorahosted.org/sssd/ticket/2461 Reviewed-by: Pavel Reichl <preichl@redhat.com> Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
* Make DEBUG macro invocations variadicNikolai Kondrashov2014-02-121-16/+16
| | | | | | | | | | | | | | | | | | | | | | | | 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;' < "$f.orig" > "$f" rm "$f.orig" done Reviewed-by: Jakub Hrozek <jhrozek@redhat.com> Reviewed-by: Stephen Gallagher <sgallagh@redhat.com> Reviewed-by: Simo Sorce <simo@redhat.com>
* SYSDB: Drop the sysdb_ctx parameter from the sysdb_services moduleMichal Zidek2013-11-151-17/+14
|
* PROXY: Fix memory hierarchy when enumerating servicesJakub Hrozek2013-10-211-1/+7
|
* Add domain arguments to sysdb services functionsSimo Sorce2013-01-151-2/+2
| | | | also fix sysdb_svc_add declarations
* Add domain argument to sysdb_remove_attrs()Simo Sorce2013-01-151-4/+5
|
* Unify usage of sysdb transactionsMichal Zidek2012-08-231-1/+5
| | | | | | Removing bad examples of usage of sysdb_transaction_start/commit/end functions and making it more consistent (all files except of src/db/sysdb_*.c).
* Backward GOTOs rewritten into do-while loops.Ondrej Kos2012-08-091-89/+96
|
* Proxy services: Save lowercased protocol names and aliases in ↵Jakub Hrozek2012-03-291-57/+17
| | | | case-insensitive domains
* NSS: Add individual timeouts for entry typesStephen Gallagher2012-02-041-3/+3
| | | | https://fedorahosted.org/sssd/ticket/1016
* SYSDB: extend sysdb_store_service() to accept additional attributesStephen Gallagher2012-01-311-0/+2
|
* PROXY: add support for enumerating servicesStephen Gallagher2012-01-271-0/+177
|
* PROXY: add support for service lookups (non-enumeration)Stephen Gallagher2012-01-271-0/+199