Bump year
[yaz-moved-to-github.git] / src / odr_oct.c
index 27cd9b0..8d3cc05 100644 (file)
@@ -1,15 +1,17 @@
 /*
- * Copyright (c) 1995-2003, Index Data
+ * Copyright (C) 1995-2005, Index Data ApS
  * See the file LICENSE for details.
- * Sebastian Hammer, Adam Dickmeiss
  *
- * $Id: odr_oct.c,v 1.2 2004-08-11 12:15:38 adam Exp $
+ * $Id: odr_oct.c,v 1.8 2005-01-15 19:47:14 adam Exp $
+ */
+/**
+ * \file odr_oct.c
+ * \brief Implements ODR OCTET codec
  */
 #if HAVE_CONFIG_H
 #include <config.h>
 #endif
 
-#include <yaz/log.h>
 #include "odr-priv.h"
 
 /*
@@ -33,18 +35,11 @@ int odr_octetstring(ODR o, Odr_oct **p, int opt, const char *name)
        return odr_missing(o, opt, name);
     if (o->direction == ODR_PRINT)
     {
-        int i;
        odr_prname(o, name);
-       odr_printf(o, "OCTETSTRING(len=%d)", (*p)->len);
-        for (i = 0; i<(*p)->len; i++)
-        {
-           if (i < 5 || i > ((*p)->len - 4))
-            {
-                odr_printf(o, " %02X", (*p)->buf[i]);
-            }
-            else if (i == 5)
-                odr_printf(o, " .. ");
-        }
+       odr_printf(o, "OCTETSTRING(len=%d) ", (*p)->len);
+
+       o->op->stream_write(o, o->print, ODR_OCTETSTRING,
+                           (char*) (*p)->buf, (*p)->len);
         odr_printf(o, "\n");
        return 1;
     }