From: Dennis Schafroth Date: Thu, 26 Aug 2010 13:24:53 +0000 (+0200) Subject: add new test function: is_SRW X-Git-Tag: v4.1.0~29^2 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=2dd448afda333a5db88396d70d539089bf1a572d add new test function: is_SRW --- diff --git a/client/client.c b/client/client.c index e77e35c..f80bb47 100644 --- a/client/client.c +++ b/client/client.c @@ -2280,6 +2280,22 @@ static int only_z3950(void) return 0; } +static int is_SRW(void) +{ + if (!conn) + { + printf("Not connected yet\n"); + return 1; + } + if (protocol == PROTO_HTTP && yaz_matchstr(sru_method, "solr")) + { + printf("Not supported by SRW\n"); + return 1; + } + return 0; +} + + static int cmd_update_common(const char *arg, int version); static int cmd_update(const char *arg)