samba.git
15 years agos3:smbd: move all globals and static variables in globals.[ch]
Stefan Metzmacher [Thu, 8 Jan 2009 11:03:45 +0000 (12:03 +0100)]
s3:smbd: move all globals and static variables in globals.[ch]

The goal is to move all this variables into a big context structure.

metze

15 years agos3:smbd: variables in a main() don't need to be static
Stefan Metzmacher [Thu, 8 Jan 2009 11:00:15 +0000 (12:00 +0100)]
s3:smbd: variables in a main() don't need to be static

metze

15 years agos3:smbd: open_sockets_smbd() don't need a static variable arrount atexit()
Stefan Metzmacher [Thu, 8 Jan 2009 10:52:52 +0000 (11:52 +0100)]
s3:smbd: open_sockets_smbd() don't need a static variable arrount atexit()

open_sockets_smbd() is only called once.

metze

15 years agos3:smbd: keep dmapi globals in one context struct
Stefan Metzmacher [Thu, 8 Jan 2009 10:37:06 +0000 (11:37 +0100)]
s3:smbd: keep dmapi globals in one context struct

metze

15 years agos3:smbd: remove stupid static variables for the nfs quota code
Stefan Metzmacher [Thu, 8 Jan 2009 09:43:10 +0000 (10:43 +0100)]
s3:smbd: remove stupid static variables for the nfs quota code

metze

15 years agos3:smbd: remove pointless static variable in uid.c
Stefan Metzmacher [Thu, 8 Jan 2009 08:04:30 +0000 (09:04 +0100)]
s3:smbd: remove pointless static variable in uid.c

We always free the value at the end of the function,
so we don't need a static variable to hold just NULL
for the time the function isn't executed.

metze

15 years agos3:smbd: make static const in mangle_hash2.c really static const
Stefan Metzmacher [Thu, 8 Jan 2009 08:02:21 +0000 (09:02 +0100)]
s3:smbd: make static const in mangle_hash2.c really static const

const char *foo, means a non-const pointer to
a const char.

const char * const foo, means a const pointer to
a const char.

char * const foo, would mean a const pointer to
a non-const char.

metze

15 years agos3:smbd: make const globals in mangle_hash2.c really static const
Stefan Metzmacher [Thu, 8 Jan 2009 07:57:52 +0000 (08:57 +0100)]
s3:smbd: make const globals in mangle_hash2.c really static const

const char *foo, means a non-const pointer to
a const char.

const char * const foo, means a const pointer to
a const char.

char * const foo, would mean a const pointer to
a non-const char.

metze

15 years agos3:smbd: make globals in utmp.c static const
Stefan Metzmacher [Thu, 8 Jan 2009 07:51:41 +0000 (08:51 +0100)]
s3:smbd: make globals in utmp.c static const

const char *foo, means a non-const pointer to
a const char.

const char * const foo, means a const pointer to
a const char.

char * const foo, would mean a const pointer to
a non-const char.

metze

15 years agos3:smbd: it's pointless to have a global magic_char
Stefan Metzmacher [Thu, 8 Jan 2009 07:50:36 +0000 (08:50 +0100)]
s3:smbd: it's pointless to have a global magic_char

We call magic_char = lp_magicchar(p) each time it's used.

metze

15 years agos3:smbd: remove pointless static variables in chgpasswd.c
Stefan Metzmacher [Thu, 8 Jan 2009 07:47:57 +0000 (08:47 +0100)]
s3:smbd: remove pointless static variables in chgpasswd.c

metze

15 years agos3:smbd: make fake_files[] static const
Stefan Metzmacher [Thu, 8 Jan 2009 07:38:01 +0000 (08:38 +0100)]
s3:smbd: make fake_files[] static const

metze

15 years agos3:smbd: make mangle_fns const
Stefan Metzmacher [Thu, 8 Jan 2009 07:36:24 +0000 (08:36 +0100)]
s3:smbd: make mangle_fns const

metze

15 years agos3-svcctl: remove old hand marshalling of svcctl_QueryServiceConfig2W.
Günther Deschner [Wed, 7 Jan 2009 14:05:28 +0000 (15:05 +0100)]
s3-svcctl: remove old hand marshalling of svcctl_QueryServiceConfig2W.

Guenther

15 years agos3-svcctl: use pidl for _svcctl_QueryServiceConfig2W.
Günther Deschner [Wed, 7 Jan 2009 14:05:01 +0000 (15:05 +0100)]
s3-svcctl: use pidl for _svcctl_QueryServiceConfig2W.

Guenther

15 years agos3-svcctl: fix return code for _svcctl_QueryServiceStatusEx.
Günther Deschner [Wed, 7 Jan 2009 11:38:23 +0000 (12:38 +0100)]
s3-svcctl: fix return code for _svcctl_QueryServiceStatusEx.

Guenther

15 years agos3-svcctl: remove old hand marshalling of svcctl_QueryServiceStatusEx.
Günther Deschner [Tue, 6 Jan 2009 18:00:05 +0000 (19:00 +0100)]
s3-svcctl: remove old hand marshalling of svcctl_QueryServiceStatusEx.

Guenther

15 years agos3-svcctl: use pidl for _svcctl_QueryServiceStatusEx.
Günther Deschner [Tue, 6 Jan 2009 17:59:44 +0000 (18:59 +0100)]
s3-svcctl: use pidl for _svcctl_QueryServiceStatusEx.

Guenther

15 years agos4-smbtorture: use names for info level in test_QueryServiceStatusEx.
Günther Deschner [Fri, 14 Nov 2008 12:49:36 +0000 (13:49 +0100)]
s4-smbtorture: use names for info level in test_QueryServiceStatusEx.

Guenther

15 years agos4-smbtorture: add my copyright to svcctl test.
Günther Deschner [Fri, 14 Nov 2008 12:48:59 +0000 (13:48 +0100)]
s4-smbtorture: add my copyright to svcctl test.

Guenther

15 years agos3-svcctl: use pidl's ndr opcodes for NDR_SVCCTL_QUERYSERVICECONFIGW.
Günther Deschner [Wed, 7 Jan 2009 14:06:04 +0000 (15:06 +0100)]
s3-svcctl: use pidl's ndr opcodes for NDR_SVCCTL_QUERYSERVICECONFIGW.

Guenther

15 years agos3: re-run make samba3-idl.
Günther Deschner [Tue, 6 Jan 2009 17:19:29 +0000 (18:19 +0100)]
s3: re-run make samba3-idl.

Guenther

15 years agosvcctl: add svcctl_ServiceState.
Günther Deschner [Wed, 7 Jan 2009 16:50:09 +0000 (17:50 +0100)]
svcctl: add svcctl_ServiceState.

Guenther

15 years agosvcctl: add SERVICE_FAILURE_ACTIONS and SERVICE_DESCRIPTION to IDL.
Günther Deschner [Wed, 7 Jan 2009 14:03:45 +0000 (15:03 +0100)]
svcctl: add SERVICE_FAILURE_ACTIONS and SERVICE_DESCRIPTION to IDL.

Guenther

15 years agosvcctl: add SERVICE_STATUS_PROCESS to idl.
Günther Deschner [Tue, 6 Jan 2009 17:58:18 +0000 (18:58 +0100)]
svcctl: add SERVICE_STATUS_PROCESS to idl.

Guenther

15 years agosvcctl: add svcctl_ErrorControl and svcctl_Type (based on samba3) to IDL.
Günther Deschner [Tue, 6 Jan 2009 17:15:01 +0000 (18:15 +0100)]
svcctl: add svcctl_ErrorControl and svcctl_Type (based on samba3) to IDL.

Guenther

15 years agosvcctl: add svcctl_ConfigLevel from samba 3.
Günther Deschner [Fri, 14 Nov 2008 11:03:18 +0000 (12:03 +0100)]
svcctl: add svcctl_ConfigLevel from samba 3.

Guenther

15 years agosvcctl: move SVC_STATUS_ to idl.
Günther Deschner [Fri, 14 Nov 2008 10:58:12 +0000 (11:58 +0100)]
svcctl: move SVC_STATUS_ to idl.

Guenther

15 years agos3/s4 build: Fix Py_RETURN_NONE to work with python versions < 2.4
Tim Prouty [Wed, 7 Jan 2009 22:33:25 +0000 (14:33 -0800)]
s3/s4 build: Fix Py_RETURN_NONE to work with python versions < 2.4

15 years agos3 merged build: Fix include error
Tim Prouty [Wed, 7 Jan 2009 21:12:35 +0000 (13:12 -0800)]
s3 merged build: Fix include error

On some builds compiling source4/ntvfs/common/brlock_tdb.c was failing
because tdb_wrap.h couldn't find tdb.h.  Adding the path should fix
the problem.

15 years agoFix bug #6016 - Alternate Data Streams / Extended Attributes seem to conflict.
Jeremy Allison [Wed, 7 Jan 2009 22:57:20 +0000 (14:57 -0800)]
Fix bug #6016 - Alternate Data Streams / Extended Attributes seem to conflict.
Jeremy.

15 years agoDisplay lsa string contents.
Jelmer Vernooij [Wed, 7 Jan 2009 21:40:49 +0000 (22:40 +0100)]
Display lsa string contents.

15 years agoSet proper python exception when running out of memory.
Jelmer Vernooij [Wed, 7 Jan 2009 21:40:13 +0000 (22:40 +0100)]
Set proper python exception when running out of memory.

15 years agoMerge branch 'master' of ssh://git.samba.org/data/git/samba
Jelmer Vernooij [Wed, 7 Jan 2009 20:45:49 +0000 (21:45 +0100)]
Merge branch 'master' of ssh://git.samba.org/data/git/samba

15 years agorefresh sequence number as soon as possible when domain->sequence_number == -1 or...
boyang [Wed, 7 Jan 2009 19:02:04 +0000 (11:02 -0800)]
refresh sequence number as soon as possible when domain->sequence_number == -1 or domain->last_status is not ok.

15 years agoRemove unused struct CLI_POLICY_HND
Volker Lendecke [Wed, 7 Jan 2009 16:15:47 +0000 (17:15 +0100)]
Remove unused struct CLI_POLICY_HND

15 years agoSeveral fixes to our use of splice
Volker Lendecke [Wed, 7 Jan 2009 10:39:34 +0000 (10:39 +0000)]
Several fixes to our use of splice

The splice manpage explicitly requires loff_t as offset. Copy "offset" there.
Probably not required, but I wanted to make sure it's as required.

Splice blocks with large buffers. For me it worked with 16k and blocked with
32k and beyond. It would be nice to see a clarification in the manpage of
splice for this behaviour.

Splice if used with an offset increments the offset. From the manpage this was
at least not entirely obvious :-)

I haven't yet activated this (try_splice_call ist still false by default), it
needs more testing.

Volker

15 years agoFix ldap.py test.
Jelmer Vernooij [Wed, 7 Jan 2009 10:06:00 +0000 (11:06 +0100)]
Fix ldap.py test.

15 years agoUse new error constant (missing from 6efb7ff9)
Andrew Bartlett [Wed, 7 Jan 2009 05:30:05 +0000 (16:30 +1100)]
Use new error constant (missing from 6efb7ff9)

15 years agoRaise a python exception when the ldb search fails
Andrew Bartlett [Wed, 7 Jan 2009 05:29:23 +0000 (16:29 +1100)]
Raise a python exception when the ldb search fails

This fixes a regression found by ldap.py in the new hand-written
python bindings.

Andrew Bartlett

15 years agoadded support for stream renames in Samba4
Andrew Tridgell [Wed, 7 Jan 2009 05:46:34 +0000 (16:46 +1100)]
added support for stream renames in Samba4

This allows the RAW-STREAMS test to work again. We still have some
limitations though:

  - renames of a stream to the default stream doesn't work
  - delete on close handling between streams and the main file
    is still broken

15 years agos4:smbclient: correct initialize smbclient_context
Stefan Metzmacher [Wed, 7 Jan 2009 05:32:25 +0000 (06:32 +0100)]
s4:smbclient: correct initialize smbclient_context

Found by valgrind.

metze

15 years agotevent: don't try to dereference fde->event_ctx when the event context doesn't exists...
Stefan Metzmacher [Wed, 7 Jan 2009 05:30:37 +0000 (06:30 +0100)]
tevent: don't try to dereference fde->event_ctx when the event context doesn't exists anymore

metze

15 years agoMake winbindd_cm.c use winbindd_reinit_after_fork().
Jeremy Allison [Wed, 7 Jan 2009 01:34:06 +0000 (17:34 -0800)]
Make winbindd_cm.c use winbindd_reinit_after_fork().
Jeremy.

15 years agoFix bug #6017, - magic script does not work. based on a patch from monyo@samba.gr.jp.
Jeremy Allison [Wed, 7 Jan 2009 00:05:28 +0000 (16:05 -0800)]
Fix bug #6017, - magic script does not work. based on a patch from monyo@samba.gr.jp.
Jeremy.

15 years agoAdd winbindd_reinit_after_fork(), cleaning out all possible events
Jeremy Allison [Tue, 6 Jan 2009 23:14:52 +0000 (15:14 -0800)]
Add winbindd_reinit_after_fork(), cleaning out all possible events
in a forked child.
Jeremy.

15 years agoStart on alpha6 release notes.
Jelmer Vernooij [Tue, 6 Jan 2009 22:52:34 +0000 (23:52 +0100)]
Start on alpha6 release notes.

15 years agoAdd a talloc failure check
Volker Lendecke [Tue, 6 Jan 2009 22:25:41 +0000 (23:25 +0100)]
Add a talloc failure check

15 years agoWhen loading the default configuration, allow the configuration file to be
Jelmer Vernooij [Tue, 6 Jan 2009 21:36:01 +0000 (22:36 +0100)]
When loading the default configuration, allow the configuration file to be
missing.

15 years agoFactor out lots of common code into a function.
Jeremy Allison [Tue, 6 Jan 2009 21:16:46 +0000 (13:16 -0800)]
Factor out lots of common code into a function.
Jeremy.

15 years agoAdd some const to dcerpc_binding_build_tower()
Volker Lendecke [Tue, 6 Jan 2009 20:54:51 +0000 (21:54 +0100)]
Add some const to dcerpc_binding_build_tower()

15 years agoFix compilation, remove unused variables.
Jelmer Vernooij [Tue, 6 Jan 2009 20:52:54 +0000 (21:52 +0100)]
Fix compilation, remove unused variables.

15 years agoFix prototype.
Jelmer Vernooij [Tue, 6 Jan 2009 20:45:13 +0000 (21:45 +0100)]
Fix prototype.

15 years agoAdd a NULL check and some const to dcerpc_floor_get_lhs_data()
Volker Lendecke [Tue, 6 Jan 2009 20:24:30 +0000 (21:24 +0100)]
Add a NULL check and some const to dcerpc_floor_get_lhs_data()

15 years agoFix typo
Matthias Dieter Wallnöfer [Tue, 6 Jan 2009 15:20:57 +0000 (16:20 +0100)]
Fix typo

15 years agos4-smbtorture: verify each password change via samlogon in SAMR-PASSWORDS-PWDLASTSET...
Günther Deschner [Mon, 8 Dec 2008 12:10:56 +0000 (13:10 +0100)]
s4-smbtorture: verify each password change via samlogon in SAMR-PASSWORDS-PWDLASTSET test.

Guenther

15 years agos3-lsa: remove all init_lsa* functions.
Günther Deschner [Mon, 8 Dec 2008 17:03:11 +0000 (18:03 +0100)]
s3-lsa: remove all init_lsa* functions.

Guenther

15 years agos3-lsa: avoid all init_lsa* functions.
Günther Deschner [Mon, 8 Dec 2008 17:03:01 +0000 (18:03 +0100)]
s3-lsa: avoid all init_lsa* functions.

Guenther

15 years agos3-srvsvc: remove all init_srvsvc* functions.
Günther Deschner [Mon, 8 Dec 2008 12:39:53 +0000 (13:39 +0100)]
s3-srvsvc: remove all init_srvsvc* functions.

Guenther

15 years agos3-srvsvc: avoid all init_srvsvc* functions.
Günther Deschner [Mon, 8 Dec 2008 12:39:32 +0000 (13:39 +0100)]
s3-srvsvc: avoid all init_srvsvc* functions.

Guenther

15 years agos3-samr: remove all init_samr_alias* functions.
Günther Deschner [Sat, 6 Dec 2008 00:44:54 +0000 (01:44 +0100)]
s3-samr: remove all init_samr_alias* functions.

Guenther

15 years agos3-samr: avoid all init_samr_alias* functions.
Günther Deschner [Sat, 6 Dec 2008 00:44:46 +0000 (01:44 +0100)]
s3-samr: avoid all init_samr_alias* functions.

Guenther

15 years agos3-samr: remove all init_samr_group* functions.
Günther Deschner [Sat, 6 Dec 2008 00:41:38 +0000 (01:41 +0100)]
s3-samr: remove all init_samr_group* functions.

Guenther

15 years agos3-samr: avoid all init_samr_group* functions.
Günther Deschner [Sat, 6 Dec 2008 00:41:28 +0000 (01:41 +0100)]
s3-samr: avoid all init_samr_group* functions.

Guenther

15 years agos3-samr: remove all init_samr_dom* functions.
Günther Deschner [Sat, 6 Dec 2008 00:34:51 +0000 (01:34 +0100)]
s3-samr: remove all init_samr_dom* functions.

Guenther

15 years agos3-samr: avoid all init_samr_Domain* functions.
Günther Deschner [Sat, 6 Dec 2008 00:33:28 +0000 (01:33 +0100)]
s3-samr: avoid all init_samr_Domain* functions.

Guenther

15 years agos3-samr: remove init_samr_user* functions.
Günther Deschner [Fri, 5 Dec 2008 23:30:11 +0000 (00:30 +0100)]
s3-samr: remove init_samr_user* functions.

Guenther

15 years agos3-samr: avoid all init_samr_user* functions.
Günther Deschner [Fri, 5 Dec 2008 23:28:34 +0000 (00:28 +0100)]
s3-samr: avoid all init_samr_user* functions.

Guenther

15 years agoAdd dependency to talloc in tevent pc file.
Jelmer Vernooij [Tue, 6 Jan 2009 14:53:50 +0000 (15:53 +0100)]
Add dependency to talloc in tevent pc file.

15 years agos3/swat: Fix creation of the first share using SWAT.
Volker Lendecke [Tue, 6 Jan 2009 14:13:43 +0000 (15:13 +0100)]
s3/swat: Fix creation of the first share using SWAT.

This fixes bug #5965.

15 years agoEnsure libreplace is included into the tevent python bindings
Andrew Bartlett [Tue, 6 Jan 2009 11:38:09 +0000 (22:38 +1100)]
Ensure libreplace is included into the tevent python bindings

Without this, the samba4.tevent.python test fails

Andrew Bartlett

15 years agodocs: Improve description of the share commands in man smb.conf.
Karolin Seeger [Tue, 6 Jan 2009 11:26:23 +0000 (12:26 +0100)]
docs: Improve description of the share commands in man smb.conf.

-Correct the parameter names.
-Fix typos.
-Fix related parameters.

This fixes bug #6008.
Thanks to TAKAHASHI Motonobu <monyo@samba.gr.jp> for reporting!

Karolin

15 years agoMove the "rid_name" typedef to the only place where it might be used
Volker Lendecke [Tue, 6 Jan 2009 10:22:32 +0000 (11:22 +0100)]
Move the "rid_name" typedef to the only place where it might be used

15 years agodocs: Fix example in man vfs_recycle.
Karolin Seeger [Tue, 6 Jan 2009 09:26:37 +0000 (10:26 +0100)]
docs: Fix example in man vfs_recycle.

This fixes bug #6001.
Thanks to TAKAHASHI Motonobu <monyo@samba.gr.jp> for reporting!

Karolin

15 years agos4 winbind: Silence a "discards const" warning
Kai Blin [Tue, 6 Jan 2009 08:55:09 +0000 (09:55 +0100)]
s4 winbind: Silence a "discards const" warning

15 years agos3 merged build: Remove redundant #defines that are in idl generated headers
Tim Prouty [Tue, 30 Dec 2008 21:45:29 +0000 (13:45 -0800)]
s3 merged build: Remove redundant #defines that are in idl generated headers

This fixes a series of samba3 build warnings in the merged build with
--enable-picky-developer=yes. 'error: "X" redefined', where X is one
of the redundant #defines.

This required committing a static version of spoolss.h for it to be
included by non-merged s3 builds.

15 years agoset entry->refresh_time to make ccache_regain_all_now() work correctly.
Bo Yang [Tue, 6 Jan 2009 04:49:59 +0000 (12:49 +0800)]
set entry->refresh_time to make ccache_regain_all_now() work correctly.

15 years agopy: Properly increase the reference counter of Py_None.
Jelmer Vernooij [Tue, 6 Jan 2009 03:13:57 +0000 (04:13 +0100)]
py: Properly increase the reference counter of Py_None.

15 years agoAttempt to fix crash seen with new CUPS async printcap loading code.
Jeremy Allison [Mon, 5 Jan 2009 21:47:34 +0000 (13:47 -0800)]
Attempt to fix crash seen with new CUPS async printcap loading code.
Jeremy.

15 years agoFix call to ndr_size_dom_sid, missing parameter.
Jeremy Allison [Mon, 5 Jan 2009 21:47:07 +0000 (13:47 -0800)]
Fix call to ndr_size_dom_sid, missing parameter.
Jeremy.

15 years agos3:events: use more tevent_common_* functions
Stefan Metzmacher [Mon, 5 Jan 2009 18:47:59 +0000 (19:47 +0100)]
s3:events: use more tevent_common_* functions

metze

15 years agotevent: add some debugging for timer events, that mostly matches samba3
Stefan Metzmacher [Mon, 5 Jan 2009 18:52:47 +0000 (19:52 +0100)]
tevent: add some debugging for timer events, that mostly matches samba3

metze

15 years agotevent: add tevent_context destructor that unlinks the events from the context
Stefan Metzmacher [Mon, 5 Jan 2009 18:23:23 +0000 (19:23 +0100)]
tevent: add tevent_context destructor that unlinks the events from the context

metze

15 years agotevent: don't crash if te->event_ctx is NULL
Stefan Metzmacher [Mon, 5 Jan 2009 18:22:22 +0000 (19:22 +0100)]
tevent: don't crash if te->event_ctx is NULL

metze

15 years agotevent: keep a linked list of fd_events
Stefan Metzmacher [Mon, 5 Jan 2009 16:36:50 +0000 (17:36 +0100)]
tevent: keep a linked list of fd_events

metze

15 years agotevent: keep a linked list of signal events
Stefan Metzmacher [Mon, 5 Jan 2009 15:55:00 +0000 (16:55 +0100)]
tevent: keep a linked list of signal events

metze

15 years agotevent: make tevent_debug() a noop if ev is NULL
Stefan Metzmacher [Mon, 5 Jan 2009 18:41:03 +0000 (19:41 +0100)]
tevent: make tevent_debug() a noop if ev is NULL

metze

15 years agoAttempt to fix the build on netbsd5
Volker Lendecke [Mon, 5 Jan 2009 21:10:25 +0000 (22:10 +0100)]
Attempt to fix the build on netbsd5

15 years agoMerge branch 'master' of ssh://git.samba.org/data/git/samba
Jelmer Vernooij [Mon, 5 Jan 2009 17:01:04 +0000 (18:01 +0100)]
Merge branch 'master' of ssh://git.samba.org/data/git/samba

15 years agoAttempt to fix the build with dnssd
Volker Lendecke [Mon, 5 Jan 2009 16:11:51 +0000 (17:11 +0100)]
Attempt to fix the build with dnssd

15 years agoexamples: Avoid bashism in perfcount.init.
Karolin Seeger [Mon, 5 Jan 2009 15:33:00 +0000 (16:33 +0100)]
examples: Avoid bashism in perfcount.init.

This fixes bug #6000.
Thanks to the Debian Samba package maintainers for providing the patch!
Remove trailing whitespaces.

Karolin

15 years agoRevert "examples: Avoid bashism in perfcount.init."
Karolin Seeger [Mon, 5 Jan 2009 15:30:10 +0000 (16:30 +0100)]
Revert "examples: Avoid bashism in perfcount.init."

This reverts commit 73875cd344608b591fa884ab99b5f3a10550c149.

15 years agoFix bug 6014 -- mget shouldn't segfault without arguments
Volker Lendecke [Mon, 5 Jan 2009 14:47:19 +0000 (15:47 +0100)]
Fix bug 6014 -- mget shouldn't segfault without arguments

Thanks to kevin.paulus@mtm.kuleuven.be for the bug report

Volker

15 years agos3:winbindd: also handle fd events from the winbind_event_context()
Stefan Metzmacher [Mon, 5 Jan 2009 10:53:29 +0000 (11:53 +0100)]
s3:winbindd: also handle fd events from the winbind_event_context()

metze

15 years agos3:events: register as tevent backend
Stefan Metzmacher [Sun, 4 Jan 2009 18:29:12 +0000 (19:29 +0100)]
s3:events: register as tevent backend

metze

15 years agos3: build lib/tevent staticly into samba3
Stefan Metzmacher [Sun, 4 Jan 2009 18:27:31 +0000 (19:27 +0100)]
s3: build lib/tevent staticly into samba3

metze

15 years agos3:events: get rid of the stupid set_event_dispatch_time() function
Stefan Metzmacher [Tue, 30 Dec 2008 09:00:43 +0000 (10:00 +0100)]
s3:events: get rid of the stupid set_event_dispatch_time() function

metze

15 years agos3:events: get rid of the stupid cancel_named_event() function
Stefan Metzmacher [Tue, 30 Dec 2008 08:19:27 +0000 (09:19 +0100)]
s3:events: get rid of the stupid cancel_named_event() function

metze

15 years agos3:events: change event_add_timed() prototype to match samba4
Stefan Metzmacher [Mon, 5 Jan 2009 09:22:50 +0000 (10:22 +0100)]
s3:events: change event_add_timed() prototype to match samba4

metze

15 years agos3:events: move prototypes to event.h
Stefan Metzmacher [Mon, 5 Jan 2009 08:06:05 +0000 (09:06 +0100)]
s3:events: move prototypes to event.h

metze