X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=asn%2Fproto.c;h=2cd5d94c14c2905509a003548cc703aebc6cb5dc;hp=45735b6428e7732b6ac54d8b5a532fd9e8d4bcc0;hb=1110373102ed65ffcaa5384aa0514516b162c543;hpb=1db60f5a7396b9b37560f6b6962be0b68240486c diff --git a/asn/proto.c b/asn/proto.c index 45735b6..2cd5d94 100644 --- a/asn/proto.c +++ b/asn/proto.c @@ -4,7 +4,13 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: proto.c,v $ - * Revision 1.29 1995-06-15 07:44:49 quinn + * Revision 1.31 1995-06-16 13:15:56 quinn + * Fixed Defaultdiagformat. + * + * Revision 1.30 1995/06/15 15:42:01 quinn + * Fixed some v3 bugs + * + * Revision 1.29 1995/06/15 07:44:49 quinn * Moving to v3. * * Revision 1.28 1995/06/14 15:26:35 quinn @@ -122,6 +128,11 @@ int z_UserInformationField(ODR o, Odr_external **p, int opt) 11, opt); } +int z_InternationalString(ODR o, char **p, int opt) +{ + return odr_generalstring(o, p, opt); +} + int z_InfoCategory(ODR o, Z_InfoCategory **p, int opt) { if (!odr_sequence_begin(o, p, sizeof(**p))) @@ -721,6 +732,14 @@ int z_DatabaseRecord(ODR o, Z_DatabaseRecord **p, int opt) int z_DefaultDiagFormat(ODR o, Z_DefaultDiagFormat **p, int opt) { + static Odr_arm arm[] = + { + {-1, -1, -1, Z_DiagForm_v2AddInfo, odr_visiblestring}, + {-1, -1, -1, Z_DiagForm_v3AddInfo, z_InternationalString}, + {ODR_IMPLICIT, ODR_CONTEXT, ODR_VISIBLESTRING, Z_DiagForm_v2AddInfo, + odr_visiblestring}, /* to match some weird server.. */ + {-1, -1, -1, -1, 0} + }; if (!odr_sequence_begin(o, p, sizeof(**p))) return opt && odr_ok(o); return @@ -732,9 +751,7 @@ int z_DefaultDiagFormat(ODR o, Z_DefaultDiagFormat **p, int opt) * We need to turn it into a choice, or something, because of * that damn generalstring in v3. */ - (odr_visiblestring(o, &(*p)->addinfo, 0) || - odr_implicit(o, odr_cstring, &(*p)->addinfo, ODR_CONTEXT, - ODR_VISIBLESTRING, 1)) && + odr_choice(o, arm, &(*p)->addinfo, &(*p)->which) && odr_sequence_end(o); } @@ -780,6 +797,20 @@ int z_DiagRec(ODR o, Z_DiagRec **p, int opt) #endif +int z_DiagRecs(ODR o, Z_DiagRecs **p, int opt) +{ + if (o->direction == ODR_DECODE) + *p = odr_malloc(o, sizeof(**p)); + else if (!*p) + return opt; + + if (odr_sequence_of(o, z_DiagRec, &(*p)->diagRecs, + &(*p)->num_diagRecs)) + return 1; + *p = 0; + return 0; +} + int z_NamePlusRecord(ODR o, Z_NamePlusRecord **p, int opt) { static Odr_arm arm[] = @@ -817,10 +848,12 @@ int z_NamePlusRecordList(ODR o, Z_NamePlusRecordList **p, int opt) int z_Records(ODR o, Z_Records **p, int opt) { - Odr_arm arm[] = + static Odr_arm arm[] = { {ODR_IMPLICIT, ODR_CONTEXT, 28, Z_Records_DBOSD, z_NamePlusRecordList}, {ODR_IMPLICIT, ODR_CONTEXT, 130, Z_Records_NSD, z_DiagRec}, + {ODR_IMPLICIT, ODR_CONTEXT, 205, Z_Records_multipleNSD, + z_DiagRecs}, {-1, -1, -1, -1, 0} }; @@ -1012,20 +1045,6 @@ int z_Entries(ODR o, Z_Entries **p, int opt) return 0; } -int z_DiagRecs(ODR o, Z_DiagRecs **p, int opt) -{ - if (o->direction == ODR_DECODE) - *p = odr_malloc(o, sizeof(**p)); - else if (!*p) - return opt; - - if (odr_sequence_of(o, z_DiagRec, &(*p)->diagRecs, - &(*p)->num_diagRecs)) - return 1; - *p = 0; - return 0; -} - int z_ListEntries(ODR o, Z_ListEntries **p, int opt) { static Odr_arm arm[] =