summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/sdap.h
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2010-09-14 17:42:52 +0200
committerStephen Gallagher <sgallagh@redhat.com>2010-09-15 11:46:33 -0400
commit6480abbd1bba71efa8a834fada6505d1767fabfc (patch)
tree802b5f16d8a495d44668217da5491fd612864f62 /src/providers/ldap/sdap.h
parent71af2725e8f96b403af3f4aa140c413f751380c0 (diff)
downloadsssd-6480abbd1bba71efa8a834fada6505d1767fabfc.tar.gz
sssd-6480abbd1bba71efa8a834fada6505d1767fabfc.tar.xz
sssd-6480abbd1bba71efa8a834fada6505d1767fabfc.zip
Revert "Make ldap bind asynchronous"
This reverts 56d8d19ac9d857580a233d8264e851883b883c67
Diffstat (limited to 'src/providers/ldap/sdap.h')
-rw-r--r--src/providers/ldap/sdap.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/providers/ldap/sdap.h b/src/providers/ldap/sdap.h
index c7921c788..c533f3b9c 100644
--- a/src/providers/ldap/sdap.h
+++ b/src/providers/ldap/sdap.h
@@ -45,7 +45,6 @@ struct sdap_op;
typedef void (sdap_op_callback_t)(struct sdap_op *op,
struct sdap_msg *, int, void *);
-typedef int (fd_wakeup_callback_t)(void *);
struct sdap_handle;
@@ -64,33 +63,18 @@ struct sdap_op {
struct sdap_msg *last;
};
-struct ldap_cb_data;
-
-struct request_spy {
- struct fd_event_item *ptr;
-};
-
struct fd_event_item {
struct fd_event_item *prev;
struct fd_event_item *next;
int fd;
struct tevent_fd *fde;
-
- struct ldap_cb_data *cb_data;
- fd_wakeup_callback_t *fd_wakeup_cb;
- void *fd_wakeup_cb_data;
- struct request_spy *spy;
- struct tevent_timer *timeout_watcher;
};
struct ldap_cb_data {
struct sdap_handle *sh;
struct tevent_context *ev;
struct fd_event_item *fd_list;
-
- fd_wakeup_callback_t *wakeup_cb;
- void *wakeup_cb_data;
};
struct sup_list {