diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-01-17 12:59:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:17:13 -0500 |
commit | bf219447a35d86913c1a643b66d993986a651360 (patch) | |
tree | abd6650e6694233de6d6f8e197a03b513ecaec56 /source3/torture | |
parent | 60c1a8e5a8f905a5ae703dac05ed2f440875ad5d (diff) | |
download | samba-bf219447a35d86913c1a643b66d993986a651360.tar.gz samba-bf219447a35d86913c1a643b66d993986a651360.tar.bz2 samba-bf219447a35d86913c1a643b66d993986a651360.zip |
r20846: Before this gets out of control...
This add a struct event_context and infrastructure for fd events to smbd. This
is step zero to import lib/events.
Jeremy, I rely on you to watch the change in receive_message_or_smb()
closely. For the normal code path this should be the only relevant change. The
rest is either not yet used or is cosmetic.
Volker
(This used to be commit cd07f93a8aecb24c056e33b1ad3447a41959810f)
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/vfstest.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/torture/vfstest.c b/source3/torture/vfstest.c index fa0545988e..f9a01a3e91 100644 --- a/source3/torture/vfstest.c +++ b/source3/torture/vfstest.c @@ -479,6 +479,16 @@ BOOL reload_services(BOOL test) return (ret); } +struct event_context *smbd_event_context(void) +{ + static struct event_context *ctx; + + if (!ctx && !(ctx = event_context_init(NULL))) { + smb_panic("Could not init smbd event context\n"); + } + return ctx; +} + /* Main function */ int main(int argc, char *argv[]) |