X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=client%2Fadmin.c;h=019910a794a9f65f518826533f4b48a474eb4a5d;hb=bc4b50939a936dbb214c783c18a44039ea048fdd;hp=9dddf0dd1038cd44f6f749dd21937cbc89844d87;hpb=fb6d99a0c7e07d9cc4a315c447deaf6564a85505;p=yaz-moved-to-github.git diff --git a/client/admin.c b/client/admin.c index 9dddf0d..019910a 100644 --- a/client/admin.c +++ b/client/admin.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2005, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2008 Index Data * See the file LICENSE for details. - * - * $Id: admin.c,v 1.21 2005-06-25 15:46:01 adam Exp $ */ #include @@ -27,13 +25,13 @@ #include #include #include - +#include #include #include "admin.h" /* Helper functions to get to various statics in the client */ -ODR getODROutputStream(); +ODR getODROutputStream(void); extern char *databaseNames[]; extern int num_databaseNames; @@ -47,20 +45,15 @@ int sendAdminES(int type, char* param1) Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest ); Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest; Z_External *r; - int oid[OID_SIZE]; + Odr_oid *oid; Z_ESAdminOriginPartToKeep *toKeep; Z_ESAdminOriginPartNotToKeep *notToKeep; - oident update_oid; printf ("Admin request\n"); fflush(stdout); - /* Set up the OID for the external */ - update_oid.proto = PROTO_Z3950; - update_oid.oclass = CLASS_EXTSERV; - update_oid.value = VAL_ADMINSERVICE; + oid = odr_oiddup(out, yaz_oid_extserv_admin); - oid_ent_to_oid (&update_oid, oid); - req->packageType = odr_oiddup(out,oid); + req->packageType = oid; req->packageName = "1.Extendedserveq"; /* Allocate the external */