diff options
Diffstat (limited to 'source3/lib/messages.c')
-rw-r--r-- | source3/lib/messages.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/source3/lib/messages.c b/source3/lib/messages.c index 3d838fe908..364bbbcea4 100644 --- a/source3/lib/messages.c +++ b/source3/lib/messages.c @@ -61,6 +61,21 @@ struct messaging_callback { void *private_data; }; +struct messaging_context { + struct server_id id; + struct tevent_context *event_ctx; + struct messaging_callback *callbacks; + + struct tevent_req **new_waiters; + unsigned num_new_waiters; + + struct tevent_req **waiters; + unsigned num_waiters; + + struct messaging_backend *local; + struct messaging_backend *remote; +}; + /**************************************************************************** A useful function for testing the message system. ****************************************************************************/ |