X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fzoom-c.c;h=9fa1e49dbda6b594492a81e566e77cb76eedc650;hp=130aed429d2897fbc88e746fd8e7c3b28d84c430;hb=976e19ac608c2992096baf821426186570ea2df9;hpb=1a5d172598ed970a299d142cd2ff536e905659f8 diff --git a/src/zoom-c.c b/src/zoom-c.c index 130aed4..9fa1e49 100644 --- a/src/zoom-c.c +++ b/src/zoom-c.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: zoom-c.c,v 1.46 2005-08-09 18:29:35 adam Exp $ + * $Id: zoom-c.c,v 1.47 2005-10-17 12:29:44 mike Exp $ */ /** * \file zoom-c.c @@ -1045,7 +1045,7 @@ static zoom_ret ZOOM_connection_send_init (ZOOM_connection c) ZOOM_options_get(c->options, "implementationName"), odr_prepend(c->odr_out, "ZOOM-C", ireq->implementationName)); - version = odr_strdup(c->odr_out, "$Revision: 1.46 $"); + version = odr_strdup(c->odr_out, "$Revision: 1.47 $"); if (strlen(version) > 10) /* check for unexpanded CVS strings */ version[strlen(version)-2] = '\0'; ireq->implementationVersion = odr_prepend(c->odr_out, @@ -3410,6 +3410,12 @@ ZOOM_connection_option_get (ZOOM_connection c, const char *key) return ZOOM_options_get (c->options, key); } +ZOOM_API(const char *) +ZOOM_connection_option_getl (ZOOM_connection c, const char *key, int *lenp) +{ + return ZOOM_options_getl (c->options, key, lenp); +} + ZOOM_API(void) ZOOM_connection_option_set (ZOOM_connection c, const char *key, const char *val)