X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=util%2Foid.c;h=d1ce750911342dbac81835b8b2c84ebb0d40df78;hp=e5219612069667a92bab32488800fd31fc7efb98;hb=79bf9f1b8b224b6b7323b280fca704591ac17324;hpb=53f9d5a65d5f1ca2e925490e7ed9b4e9d2a84dc9 diff --git a/util/oid.c b/util/oid.c index e521961..d1ce750 100644 --- a/util/oid.c +++ b/util/oid.c @@ -1,10 +1,19 @@ /* - * Copyright (c) 1995, Index Data + * Copyright (c) 1995-1997, Index Data * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * * $Log: oid.c,v $ - * Revision 1.22 1997-08-29 13:34:58 quinn + * Revision 1.24 1997-09-29 13:19:00 adam + * Added function, oid_ent_to_oid, to replace the function + * oid_getoidbyent, which is not thread safe. + * + * Revision 1.23 1997/09/09 10:10:19 adam + * Another MSV5.0 port. Changed projects to include proper + * library/include paths. + * Server starts server in test-mode when no options are given. + * + * Revision 1.22 1997/08/29 13:34:58 quinn * Added thesaurus oids * * Revision 1.21 1997/08/19 08:46:05 quinn @@ -94,6 +103,7 @@ * entries to the list at initialization. */ +#include #include #include @@ -353,13 +363,13 @@ struct oident *oid_getentbyoid(int *o) return 0; } + /* * To query, fill out proto, class, and value of the ent parameter. */ -int *oid_getoidbyent(struct oident *ent) +int *oid_ent_to_oid(struct oident *ent, int *ret) { struct oident *p; - static int ret[OID_SIZE]; for (p = oids; *p->oidsuffix >= 0; p++) if (ent->proto == p->proto && @@ -392,6 +402,15 @@ int *oid_getoidbyent(struct oident *ent) } return 0; } +/* + * To query, fill out proto, class, and value of the ent parameter. + */ +int *oid_getoidbyent(struct oident *ent) +{ + static int ret[OID_SIZE]; + + return oid_ent_to_oid (ent, ret); +} oid_value oid_getvalbyname(const char *name) {