From 2dd448afda333a5db88396d70d539089bf1a572d Mon Sep 17 00:00:00 2001 From: Dennis Schafroth Date: Thu, 26 Aug 2010 15:24:53 +0200 Subject: [PATCH 1/1] add new test function: is_SRW --- client/client.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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) -- 1.7.10.4