diff options
author | snowdrop | 2006-01-11 09:22:21 +0000 |
---|---|---|
committer | snowdrop | 2006-01-11 09:22:21 +0000 |
commit | 3a17b921e00936e3007807439f60e4bd7c7d6a51 (patch) | |
tree | bf17d7117baf4d9237bcebd226bceff74b81ed89 | |
parent | 1323060c8671a409f6e701124c0667c646f008c1 (diff) | |
download | csoap-before_ssl_api_intro.tar.gz csoap-before_ssl_api_intro.tar.bz2 |
changed default temination signal to SIGINTbefore_ssl_api_intro
-rw-r--r-- | nanohttp/nanohttp-server.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |