From 30ac99878d92779ef5f2ac5f1d1ed24eb8d30b6e Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 15 May 2007 08:51:49 +0000 Subject: [PATCH] Exit when address is already in use (HTTP binding). --- src/http.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/http.c b/src/http.c index 189cbe3..e46d2ae 100644 --- a/src/http.c +++ b/src/http.c @@ -1,4 +1,4 @@ -/* $Id: http.c,v 1.30 2007-04-23 08:56:52 marc Exp $ +/* $Id: http.c,v 1.31 2007-05-15 08:51:49 adam Exp $ Copyright (c) 2006-2007, Index Data. This file is part of Pazpar2. @@ -1034,9 +1034,15 @@ void http_init(const char *addr) abort(); if (bind(l, (struct sockaddr *) &myaddr, sizeof myaddr) < 0) + { yaz_log(YLOG_FATAL|YLOG_ERRNO, "bind"); + exit(1); + } if (listen(l, SOMAXCONN) < 0) + { yaz_log(YLOG_FATAL|YLOG_ERRNO, "listen"); + exit(1); + } c = iochan_create(l, http_accept, EVENT_INPUT | EVENT_EXCEPT); pazpar2_add_channel(c); -- 1.7.10.4