X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Fclient.h;h=a410078c4d3870a5a7cd16d4140d5f07c7c26c3b;hb=5fdac8e7a282d625568f5768bd3ae9367dd4acaf;hp=f01e980081865d75e401fbb214135f9266d90902;hpb=a09d10bb2d1e817d8f1e0de404a47c8ff3759103;p=pazpar2-moved-to-github.git diff --git a/src/client.h b/src/client.h index f01e980..a410078 100644 --- a/src/client.h +++ b/src/client.h @@ -1,7 +1,5 @@ -/* $Id: client.h,v 1.2 2007-06-15 06:45:39 adam Exp $ - Copyright (c) 2006-2007, Index Data. - -This file is part of Pazpar2. +/* This file is part of Pazpar2. + Copyright (C) 2006-2008 Index Data Pazpar2 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -14,10 +12,10 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with Pazpar2; see the file LICENSE. If not, write to the -Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. - */ +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ /** \file client.h \brief Z39.50 client @@ -40,15 +38,19 @@ enum client_state Client_Error, Client_Failed, Client_Disconnected, - Client_Stopped + Client_Stopped, + Client_Continue }; -int client_show_raw(struct client *cl, int position, - const char *syntax, const char *esn, - void *data, - void (*error_handler)(void *data, const char *addinfo), - void (*record_handler)(void *data, const char *buf, - size_t sz)); +int client_show_raw_begin(struct client *cl, int position, + const char *syntax, const char *esn, + void *data, + void (*error_handler)(void *data, const char *addinfo), + void (*record_handler)(void *data, const char *buf, + size_t sz), + void **data2, + int binary); +void client_show_raw_remove(struct client *cl, void *rr); const char *client_get_state_str(struct client *cl); enum client_state client_get_state(struct client *cl);