X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fspipe.c;h=a4f8f5fc3dd7f96e7463181e12f59569d55cc1f4;hp=43e98529d091da781759a2a23c3abc7bc7c728b3;hb=9c32d63a1113f58ceb168e8321f1e360b2006e3b;hpb=77c5a4fca8b516fd39b8ba213daed17a465a6b2a diff --git a/src/spipe.c b/src/spipe.c index 43e9852..a4f8f5f 100644 --- a/src/spipe.c +++ b/src/spipe.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2012 Index Data + * Copyright (C) Index Data * See the file LICENSE for details. */ @@ -137,7 +137,7 @@ yaz_spipe_t yaz_spipe_create(int port_to_use, WRBUF *err_msg) #ifndef WIN32 { unsigned long one = 1; - if (setsockopt(p->m_socket, SOL_SOCKET, SO_REUSEADDR, (char*) + if (setsockopt(p->m_socket, SOL_SOCKET, SO_REUSEADDR, (char*) &one, sizeof(one))) { if (err_msg) @@ -152,7 +152,7 @@ yaz_spipe_t yaz_spipe_create(int port_to_use, WRBUF *err_msg) add.sin_port = htons(port_to_use); add.sin_addr.s_addr = INADDR_ANY; addr = ( struct sockaddr *) &add; - + if (bind(p->m_socket, addr, sizeof(struct sockaddr_in))) { if (err_msg) @@ -160,7 +160,7 @@ yaz_spipe_t yaz_spipe_create(int port_to_use, WRBUF *err_msg) yaz_spipe_destroy(p); return 0; } - + if (listen(p->m_socket, 3) < 0) { if (err_msg) @@ -178,7 +178,7 @@ yaz_spipe_t yaz_spipe_create(int port_to_use, WRBUF *err_msg) yaz_spipe_destroy(p); return 0; } - + memcpy(&add.sin_addr.s_addr, &tmpadd, sizeof(struct in_addr)); p->m_fd[1] = socket(AF_INET, SOCK_STREAM, 0); if (p->m_fd[1] == YAZ_INVALID_SOCKET)