From fd881f40670792452247de5f6711b5a943612f03 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 21 Jun 2007 13:05:56 +0000 Subject: r23564: Handle MSG_DUMP_EVENT_LIST only in winbindd for now. Guenther (This used to be commit 2592e68a43a73474e1bb53f83642c864fd159b45) --- source3/nsswitch/winbindd_dual.c | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) (limited to 'source3/nsswitch/winbindd_dual.c') diff --git a/source3/nsswitch/winbindd_dual.c b/source3/nsswitch/winbindd_dual.c index 2c2ef92046..cc15398d42 100644 --- a/source3/nsswitch/winbindd_dual.c +++ b/source3/nsswitch/winbindd_dual.c @@ -698,6 +698,29 @@ void winbind_msg_onlinestatus(struct messaging_context *msg_ctx, } } +void winbind_msg_dump_event_list(struct messaging_context *msg_ctx, + void *private_data, + uint32_t msg_type, + struct server_id server_id, + DATA_BLOB *data) +{ + struct winbindd_child *child; + + DEBUG(10,("winbind_msg_dump_event_list received\n")); + + dump_event_list(winbind_event_context()); + + for (child = children; child != NULL; child = child->next) { + + DEBUG(10,("winbind_msg_dump_event_list: sending message to pid %u\n", + (unsigned int)child->pid)); + + messaging_send_buf(msg_ctx, pid_to_procid(child->pid), + MSG_DUMP_EVENT_LIST, + NULL, 0); + } + +} static void account_lockout_policy_handler(struct event_context *ctx, struct timed_event *te, @@ -885,6 +908,18 @@ static void child_msg_onlinestatus(struct messaging_context *msg_ctx, talloc_destroy(mem_ctx); } +static void child_msg_dump_event_list(struct messaging_context *msg, + void *private_data, + uint32_t msg_type, + struct server_id server_id, + DATA_BLOB *data) +{ + DEBUG(5,("child_msg_dump_event_list received\n")); + + dump_event_list(winbind_event_context()); +} + + static BOOL fork_domain_child(struct winbindd_child *child) { int fdpair[2]; @@ -958,6 +993,8 @@ static BOOL fork_domain_child(struct winbindd_child *child) MSG_WINBIND_ONLINE, NULL); messaging_deregister(winbind_messaging_context(), MSG_WINBIND_ONLINESTATUS, NULL); + messaging_deregister(winbind_messaging_context(), + MSG_DUMP_EVENT_LIST, NULL); /* Handle online/offline messages. */ messaging_register(winbind_messaging_context(), NULL, @@ -966,6 +1003,8 @@ static BOOL fork_domain_child(struct winbindd_child *child) MSG_WINBIND_ONLINE, child_msg_online); messaging_register(winbind_messaging_context(), NULL, MSG_WINBIND_ONLINESTATUS, child_msg_onlinestatus); + messaging_register(winbind_messaging_context(), NULL, + MSG_DUMP_EVENT_LIST, child_msg_dump_event_list); if ( child->domain ) { child->domain->startup = True; -- cgit