s4/messaging: Return the number of previously-registered functions that are removed
[samba.git] / source4 / lib / messaging / messaging.h
1 /* 
2    Unix SMB/CIFS implementation.
3    messages.c header
4    Copyright (C) Andrew Tridgell 2000
5    Copyright (C) 2001, 2002 by Martin Pool
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #ifndef _SOURCE4_LIB_MESSAGING_MESSAGES_H_
22 #define _SOURCE4_LIB_MESSAGING_MESSAGES_H_
23
24 #include "librpc/gen_ndr/server_id.h"
25 #include "librpc/gen_ndr/messaging.h"
26
27 struct imessaging_context;
28
29 /* taskid for messaging of parent process */
30 #define SAMBA_PARENT_TASKID     0
31
32 typedef void (*msg_callback_t)(
33         struct imessaging_context *msg,
34         void *private_data,
35         uint32_t msg_type,
36         struct server_id server_id,
37         size_t num_fds,
38         int *fds,
39         DATA_BLOB *data);
40
41 NTSTATUS imessaging_send(struct imessaging_context *msg, struct server_id server,
42                         uint32_t msg_type, const DATA_BLOB *data);
43 NTSTATUS imessaging_register(struct imessaging_context *msg, void *private_data,
44                             uint32_t msg_type,
45                             msg_callback_t fn);
46 NTSTATUS imessaging_register_tmp(struct imessaging_context *msg, void *private_data,
47                                 msg_callback_t fn, uint32_t *msg_type);
48 struct imessaging_context *imessaging_init(TALLOC_CTX *mem_ctx,
49                                            struct loadparm_context *lp_ctx,
50                                            struct server_id server_id,
51                                            struct tevent_context *ev);
52 struct imessaging_context *imessaging_init_discard_incoming(
53                                                 TALLOC_CTX *mem_ctx,
54                                                 struct loadparm_context *lp_ctx,
55                                                 struct server_id server_id,
56                                                 struct tevent_context *ev);
57 void imessaging_dgm_unref_ev(struct tevent_context *ev);
58 NTSTATUS imessaging_reinit_all(void);
59 int imessaging_cleanup(struct imessaging_context *msg);
60 struct imessaging_context *imessaging_client_init(TALLOC_CTX *mem_ctx,
61                                            struct loadparm_context *lp_ctx,
62                                          struct tevent_context *ev);
63 NTSTATUS imessaging_send_ptr(struct imessaging_context *msg, struct server_id server,
64                             uint32_t msg_type, void *ptr);
65 size_t imessaging_deregister(struct imessaging_context *msg, uint32_t msg_type, void *private_data);
66 struct server_id imessaging_get_server_id(struct imessaging_context *msg_ctx);
67 NTSTATUS imessaging_process_cleanup(struct imessaging_context *msg_ctx,
68                                     pid_t pid);
69
70 #endif