summaryrefslogtreecommitdiffstats
path: root/src/responder/autofs/autofs_private.h
Commit message (Collapse)AuthorAgeFilesLines
* RESPONDERS: Create a common file with service names and versionsJakub Hrozek2012-12-181-2/+1
| | | | | | | The monitor sends calls different sbus methods to different responders. Instead of including headers of the particular responders directly in monitor, which breaks layering a little, create a common header file that will be included from src/responder/common/
* AUTOFS: remove all maps from hash if request for auto.master comes inJakub Hrozek2012-12-181-0/+2
| | | | | | | | | | https://fedorahosted.org/sssd/ticket/1592 When a request for auto.master comes in, we need to remove all the maps from the lookup hash table. We can't simply delete the maps, because another request might be processing them, so instead the maps are removed from the hash table, effectively becoming orphaned. The maps will get freed when the timed destructor is invoked.
* AUTOFS: allow removing entries from hash tableJakub Hrozek2012-12-181-0/+3
| | | | | | | | | There is a timed desctructor in the autofs responder that, when the entry timeout passes, removes the autofs map from the hash table while the map is freed. This patch adds a hash delete callback so that if the map is removed from the hash table with hash_delete, its hash table pointer will be invalidated. Later, when the entry is being freed, the destructor won't attempt to remove it from the hash table.
* AUTOFS: speed up the client by requesting multiple entries at onceJakub Hrozek2012-02-271-0/+1
| | | | https://fedorahosted.org/sssd/ticket/1166
* AUTOFS: Invoke implicit setautomntent if neededJakub Hrozek2012-02-231-0/+2
| | | | https://fedorahosted.org/sssd/ticket/1167
* AUTOFS: responderJakub Hrozek2012-02-051-0/+95