diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2012-01-29 16:13:25 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2012-01-29 16:13:25 +0100 |
commit | 4c31632a1cf1a89fc685931986653581b2623f02 (patch) | |
tree | cdb2f5ad651760eaa89c5ed10e05e2787c21cde1 /pynslcd/ether.py | |
parent | 0ddbc4563992e3e27a8e2fd1a343a855af6af151 (diff) |
implement a naive offline cache
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1615 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'pynslcd/ether.py')
-rw-r--r-- | pynslcd/ether.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pynslcd/ether.py b/pynslcd/ether.py index 20963c3..a26ac3b 100644 --- a/pynslcd/ether.py +++ b/pynslcd/ether.py @@ -20,6 +20,7 @@ import struct +import cache import common import constants @@ -46,6 +47,10 @@ class Search(common.Search): required = ('cn', 'macAddress') +class Cache(cache.Cache): + pass + + class EtherRequest(common.Request): def write(self, name, ether): |