summaryrefslogtreecommitdiff
path: root/source4/smb_server/service_smb.c
AgeCommit message (Collapse)AuthorFilesLines
2010-11-15s4-server: make server sockets a child of the task contextAndrew Tridgell1-2/+2
We previously allocated sockets as direct children of the event context. That led to crashes if a service called task_server_terminate(), as it left the socket open and handling events for a dead protocol. Making them a child of the task allows the task to terminate and take all its sockets with it. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2010-10-11smb_server: Split core out of service, since the service can be built as a ↵Jelmer Vernooij1-0/+81
.so against which we can't link.