Support for turbo marcxml
[yaz-moved-to-github.git] / src / zoom-c.c
index 42f30a0..44a5646 100644 (file)
@@ -2081,8 +2081,9 @@ static const char *get_record_format(ZOOM_record rec, int *len,
     if (*format == '1' && len)
     {
         /* try to XML format res */
-        xmlKeepBlanksDefault(0);
-        xmlDocPtr doc = xmlParseMemory(res, *len);
+        xmlDocPtr doc;
+        xmlKeepBlanksDefault(0); /* get get xmlDocFormatMemory to work! */
+        doc = xmlParseMemory(res, *len);
         if (doc)
         {
             if (rec->xml_mem)
@@ -2195,6 +2196,11 @@ ZOOM_API(const char *)
         return get_record_format(rec, len, npr, YAZ_MARC_MARCXML, charset,
                                  format);
     }
+    else if (!strcmp(type, "txml"))
+    {
+        return get_record_format(rec, len, npr, YAZ_MARC_TMARCXML, charset,
+                                 format);
+    }
     else if (!strcmp(type, "raw"))
     {
         return get_record_format(rec, len, npr, YAZ_MARC_ISO2709, charset,
@@ -4669,6 +4675,11 @@ ZOOM_API(int) ZOOM_connection_get_timeout(ZOOM_connection c)
     return ZOOM_options_get_int(c->options, "timeout", 30);
 }
 
+ZOOM_API(void) ZOOM_connection_close(ZOOM_connection c)
+{
+    do_close(c);
+}
+
 /*
  * Local variables:
  * c-basic-offset: 4