summaryrefslogtreecommitdiff
path: root/server/providers/dp_backend.h
diff options
context:
space:
mode:
authorSimo Sorce <ssorce@redhat.com>2009-07-31 09:52:14 -0400
committerStephen Gallagher <sgallagh@redhat.com>2009-08-10 09:42:18 -0400
commit2b0f40eaba44742fa38bb5b67ada510e7b2b6324 (patch)
tree10317ab1e5428020e0363c45a3e943141a14e519 /server/providers/dp_backend.h
parent508b5b2a360c9530c6ea67a7b7ed6d61559846e4 (diff)
downloadsssd-2b0f40eaba44742fa38bb5b67ada510e7b2b6324.tar.gz
sssd-2b0f40eaba44742fa38bb5b67ada510e7b2b6324.tar.bz2
sssd-2b0f40eaba44742fa38bb5b67ada510e7b2b6324.zip
Remove redundant memory contexts
Simplify code by removing stuff that is never used or redundant.
Diffstat (limited to 'server/providers/dp_backend.h')
-rw-r--r--server/providers/dp_backend.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/server/providers/dp_backend.h b/server/providers/dp_backend.h
index 66bc8718..759dd996 100644
--- a/server/providers/dp_backend.h
+++ b/server/providers/dp_backend.h
@@ -65,13 +65,17 @@ struct be_ctx {
struct tevent_context *ev;
struct confdb_ctx *cdb;
struct sysdb_ctx *sysdb;
- struct service_sbus_ctx *ss_ctx;
- struct service_sbus_ctx *dp_ctx;
struct sss_domain_info *domain;
const char *name;
const char *identity;
const char *conf_path;
+ struct sbus_method_ctx *mon_sm_ctx;
+ struct sbus_conn_ctx *mon_conn_ctx;
+
+ struct sbus_method_ctx *dp_sm_ctx;
+ struct sbus_conn_ctx *dp_conn_ctx;
+
struct loaded_be loaded_be[BET_MAX];
struct bet_info bet_info[BET_MAX];
};