X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Fhttp.c;h=096d4e6f307c40a75ce6666323b866737b9a0868;hb=8386ad4d5d4f7cfd44fba1bc34b54a5e1e917fdd;hp=527e887a2668369858ab6a42870fe5206bb3b0c2;hpb=7cb18e001c719f24b9f440f91fc44ddaaeda3303;p=pazpar2-moved-to-github.git diff --git a/src/http.c b/src/http.c index 527e887..096d4e6 100644 --- a/src/http.c +++ b/src/http.c @@ -1,5 +1,22 @@ -/* - * $Id: http.c,v 1.22 2007-04-08 23:04:20 adam Exp $ +/* $Id: http.c,v 1.25 2007-04-11 11:10:05 marc Exp $ + Copyright (c) 2006-2007, Index Data. + +This file is part of Pazpar2. + +Pazpar2 is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with Pazpar2; see the file LICENSE. If not, write to the +Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. */ #include @@ -41,7 +58,6 @@ static void http_destroy(IOCHAN i); extern IOCHAN channel_list; extern struct parameters global_parameters; -//extern NMEM nmem; // If this is set, we proxy normal HTTP requests static struct sockaddr_in *proxy_addr = 0; @@ -1008,26 +1024,12 @@ void http_init(const char *addr) } else { - //size_t len = 128; - //char h[len]; port = atoi(addr); myaddr.sin_addr.s_addr = INADDR_ANY; - -#if 0 - // get hostname from system - after deciding to bind to any - // IP address this box might have. - if (0 == gethostname(h, len)){ - h[len - 1] = '\0'; - global_parameters.server->host = nmem_strdup(nmem, h); - } else - yaz_log(YLOG_WARN, "Could not get host name"); -#endif } - myaddr.sin_port = htons(port); - if (!(p = getprotobyname("tcp"))) { abort(); }