summaryrefslogtreecommitdiff
path: root/source3/smbd/server_exit.c
AgeCommit message (Collapse)AuthorFilesLines
2010-07-19s3-auth: Simplify how we free the auth_contextSimo Sorce1-2/+1
Turn the freeing function into a destructor and attach it to the auth_context. Make all callers TALLOC_FREE() the auth_context instead of calling the free function. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
2010-07-05s3: Remove smbd_messaging_context() from exit_server_common()Volker Lendecke1-1/+1
2010-07-05s3: Remove procid_self() from exit_server_commonVolker Lendecke1-1/+1
2010-07-04s3: Remove serverid_[de]register_selfVolker Lendecke1-1/+1
This removes some deep references to procid_self()
2010-07-04s3: Don't attempt to deregister from serverid twiceVolker Lendecke1-1/+6
The parent has to take care of crashed child processes anyway, so we don't have to clean up in the child
2010-06-10s3:lib make server contexts genericSimo Sorce1-2/+2
Pair-programmed-with: Andreas Schneider <asn@samba.org>
2010-06-10Don't use the autofree context for the globals. This causes child smbd's forkedJeremy Allison1-0/+1
by modules to crash due to destructors being called (found when using the vfs_aio_fork module with smb2). Jeremy.
2010-05-28s3:smbd split smbd/server.c into smbd/server.c and smbd/server_exit.cAndrew Bartlett1-0/+173
Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org>