X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=odr%2Fodr.c;h=0366db90605953d56e2c45a1a08cb4c2d7e2e316;hb=c70f63352bac2f0bfdcc3078d69f43adbcc7ad2d;hp=4ee2025c6da9304d135653504ce28bd91022cfe4;hpb=aa82967af8f06004b567ad1ed40c67b056c44e7b;p=yaz-moved-to-github.git diff --git a/odr/odr.c b/odr/odr.c index 4ee2025..0366db9 100644 --- a/odr/odr.c +++ b/odr/odr.c @@ -1,10 +1,22 @@ /* - * Copyright (C) 1994, Index Data I/S - * All rights reserved. + * Copyright (c) 1995, Index Data + * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * * $Log: odr.c,v $ - * Revision 1.10 1995-04-18 08:15:20 quinn + * Revision 1.14 1995-06-19 12:38:46 quinn + * Added BER dumper. + * + * Revision 1.13 1995/05/22 11:32:02 quinn + * Fixing Interface to odr_null. + * + * Revision 1.12 1995/05/16 08:50:49 quinn + * License, documentation, and memory fixes + * + * Revision 1.11 1995/05/15 11:56:08 quinn + * More work on memory management. + * + * Revision 1.10 1995/04/18 08:15:20 quinn * Added dynamic memory allocation on encoding (whew). Code is now somewhat * neater. We'll make the same change for decoding one day. * @@ -41,8 +53,11 @@ #include #include +#include #include +Odr_null *ODR_NULLVAL = "NULL"; /* the presence of a null value */ + char *odr_errlist[] = { "No (unknown) error", @@ -54,7 +69,8 @@ char *odr_errlist[] = "Other error", "Protocol error", "Malformed data", - "Stack overflow" + "Stack overflow", + "Length of constructed type different from sum of members" }; void odr_perror(ODR o, char *message) @@ -115,19 +131,21 @@ void odr_destroy(ODR o) free(o); } -void odr_setbuf(ODR o, char *buf, int len) +void odr_setbuf(ODR o, char *buf, int len, int can_grow) { o->buf = o->bp = (unsigned char *) buf; o->buflen = o->left = len; o->ecb.buf = (unsigned char *) buf; - o->ecb.can_grow = 0; + o->ecb.can_grow = can_grow; o->ecb.top = o->ecb.pos = 0; o->ecb.size = len; } -char *odr_getbuf(ODR o, int *len) +char *odr_getbuf(ODR o, int *len, int *size) { *len = o->ecb.top; + if (size) + *size = o->ecb.size; return (char*) o->ecb.buf; }