mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
dca572ff1c
With this patch it will be possible to use nested event contexts with messaging_filtered_read_send/recv. Before this patchset only the one and only event context a messaging_context is initialized with is able to receive datagrams from the unix domain socket. So if you want to code a synchronous RPC-like operation using a nested event context, you will not see the reply, because the nested event context does not have the required tevent_fd's. Unfortunately, this patchset has to add some advanced array voodoo. The idea is that state->watches[] contains what we hand out with watch_new, and state->contexts contains references to the tevent_contexts. For every watch we need a tevent_fd in every event context, and the routines make sure that the arrays are properly maintained. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
39 lines
1.3 KiB
C
39 lines
1.3 KiB
C
/*
|
|
* Unix SMB/CIFS implementation.
|
|
* Copyright (C) Volker Lendecke 2013,2014
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __POLL_FUNCS_TEVENT_H__
|
|
#define __POLL_FUNCS_TEVENT_H__
|
|
|
|
#include "poll_funcs.h"
|
|
#include "tevent.h"
|
|
|
|
/*
|
|
* Create a new, empty instance of "struct poll_funcs" to be served by tevent.
|
|
*/
|
|
struct poll_funcs *poll_funcs_init_tevent(TALLOC_CTX *mem_ctx);
|
|
|
|
/*
|
|
* Register a tevent_context to handle the watches that the user of
|
|
* "poll_funcs" showed interest in. talloc_free() the returned pointer when
|
|
* "ev" is not supposed to handle the events anymore.
|
|
*/
|
|
void *poll_funcs_tevent_register(TALLOC_CTX *mem_ctx, struct poll_funcs *f,
|
|
struct tevent_context *ev);
|
|
|
|
#endif
|