X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fsrwutil.c;h=7be74bfef995c5e2827def3611fe84512afb9eb2;hb=b925ea17d6f146a28d745b0d34e9eec6eafda21f;hp=624efaa9db725f33c20d98eb04173ceaac5846c2;hpb=184f0911dd1ef651b6ba659df0eb33ff2455014c;p=yaz-moved-to-github.git diff --git a/src/srwutil.c b/src/srwutil.c index 624efaa..7be74bf 100644 --- a/src/srwutil.c +++ b/src/srwutil.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2006, Index Data ApS * See the file LICENSE for details. * - * $Id: srwutil.c,v 1.46 2006-08-16 22:47:10 adam Exp $ + * $Id: srwutil.c,v 1.47 2006-08-18 06:30:05 adam Exp $ */ /** * \file srwutil.c @@ -753,6 +753,16 @@ Z_SRW_extra_record *yaz_srw_get_extra_record(ODR o) return res; } +Z_SRW_PDU *yaz_srw_get_core_v_1_1(ODR o) +{ + Z_SRW_PDU *p = (Z_SRW_PDU *) odr_malloc(o, sizeof(*p)); + p->srw_version = odr_strdup(o, "1.1"); + p->username = 0; + p->password = 0; + p->extra_args = 0; + return p; +} + Z_SRW_PDU *yaz_srw_get(ODR o, int which) { Z_SRW_PDU *sr = yaz_srw_get_core_v_1_1(o);