X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fseshigh.c;h=4d5eb7e3965584c4524a955d8947c8a451c7c453;hb=b756b711841bac38e5b69baa51939ca9e1c01adb;hp=e739d3a388bdcab55e268daa58bf45ae537662f1;hpb=b637f5d4f5d2aea0fba9a338da386e62a10dfd00;p=yaz-moved-to-github.git diff --git a/src/seshigh.c b/src/seshigh.c index e739d3a..4d5eb7e 100644 --- a/src/seshigh.c +++ b/src/seshigh.c @@ -33,7 +33,6 @@ #include #include #include -#include #if HAVE_SYS_TYPES_H #include @@ -57,7 +56,6 @@ #include #endif -#include #include #include #include "eventl.h" @@ -227,10 +225,6 @@ void destroy_association(association *h) request_delq(&h->outgoing); xfree(h); xmalloc_trav("session closed"); - if (cb && cb->one_shot) - { - exit(0); - } } static void do_close_req(association *a, int reason, char *message, @@ -544,6 +538,9 @@ static int srw_bend_init(association *assoc, Z_SRW_diagnostic **d, int *num, Z_S len = strlen(sr->username) + 1; if (sr->password) len += strlen(sr->password) + 2; + yaz_log(log_requestdetail, "username=%s password-len=%ld", + sr->username, (long) + (sr->password ? strlen(sr->password) : 0)); auth->which = Z_IdAuthentication_open; auth->u.open = (char *) odr_malloc(assoc->decode, len); strcpy(auth->u.open, sr->username); @@ -1921,7 +1918,7 @@ static void process_http_request(association *assoc, request *req) int t; const char *alive = z_HTTP_header_lookup(hreq->headers, "Keep-Alive"); - if (alive && isdigit(*(const unsigned char *) alive)) + if (alive && yaz_isdigit(*(const unsigned char *) alive)) t = atoi(alive); else t = 15;