From 3a17b921e00936e3007807439f60e4bd7c7d6a51 Mon Sep 17 00:00:00 2001 From: snowdrop Date: Wed, 11 Jan 2006 09:22:21 +0000 Subject: changed default temination signal to SIGINT --- nanohttp/nanohttp-server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nanohttp/nanohttp-server.c') diff --git a/nanohttp/nanohttp-server.c b/nanohttp/nanohttp-server.c index 7df3462..17dca3a 100644 --- a/nanohttp/nanohttp-server.c +++ b/nanohttp/nanohttp-server.c @@ -1,5 +1,5 @@ /****************************************************************** -* $Id: nanohttp-server.c,v 1.41 2006/01/10 21:45:20 mrcsys Exp $ +* $Id: nanohttp-server.c,v 1.42 2006/01/11 09:22:21 snowdrop Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -91,7 +91,7 @@ static int _httpd_run = 1; #ifdef WIN32 static DWORD _httpd_terminate_signal = CTRL_C_EVENT; #else -static int _httpd_terminate_signal = SIGTERM; +static int _httpd_terminate_signal = SIGINT; #endif static conndata_t *_httpd_connection; -- cgit v1.1-32-gdbae