From 4c7c38e930805b84789cfb2472776d6939fc23f6 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 16 Feb 2005 01:48:11 +0000 Subject: r5411: make network interface selection a bit saner - if we have no configured network interfaces, then don't start nbtd (when I add dynamic interface loading this will change to a delay until a network interface comes up) - choose the best interface by netmask for torture tests that need a specific IP (such as the WINS test). Added iface_best_ip() for that. - if specific interfaces are chosen in smb.conf, then keep that ordering, and default to the first one listed (This used to be commit 4d08c114079ef6d1d10a96195046fe43631aefa2) --- source4/smbd/process_single.c | 1 + source4/smbd/service_task.c | 1 + 2 files changed, 2 insertions(+) (limited to 'source4/smbd') diff --git a/source4/smbd/process_single.c b/source4/smbd/process_single.c index 0a1e2a6103..8d26481a95 100644 --- a/source4/smbd/process_single.c +++ b/source4/smbd/process_single.c @@ -74,6 +74,7 @@ static void single_new_task(struct event_context *ev, /* called when a task goes down */ static void single_terminate(struct event_context *ev, const char *reason) { + DEBUG(2,("single_terminate: reason[%s]\n",reason)); } static const struct model_ops single_ops = { diff --git a/source4/smbd/service_task.c b/source4/smbd/service_task.c index 8f2255cf3e..68aba69019 100644 --- a/source4/smbd/service_task.c +++ b/source4/smbd/service_task.c @@ -32,6 +32,7 @@ void task_terminate(struct task_server *task, const char *reason) { struct event_context *event_ctx = task->event_ctx; const struct model_ops *model_ops = task->model_ops; + DEBUG(0,("task_terminate: [%s]\n", reason)); talloc_free(task); model_ops->terminate(event_ctx, reason); } -- cgit