X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fsession.h;h=61bf84dffe1e09be81ca39bf6a7819ea43182aa5;hp=2ed9bda136dd20747f572feef7185901416c9d82;hb=c9c54c9f75cfea59f26489d1b0ef011dafa4297e;hpb=2788a4851b551e1a3efb320a2878b809f2d8a9d7 diff --git a/src/session.h b/src/session.h index 2ed9bda..61bf84d 100644 --- a/src/session.h +++ b/src/session.h @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2009 Index Data. + * Copyright (C) Index Data. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -43,13 +43,15 @@ struct gfs_server { statserv_options_block cb; char *host; - int listen_ref; + char *id; + int *listen_ref; cql_transform_t cql_transform; CCL_bibset ccl_transform; void *server_node_ptr; char *directory; char *docpath; char *stylesheet; + char *client_query_charset; yaz_retrieval_t retrieval; struct gfs_server *next; }; @@ -68,8 +70,6 @@ typedef enum { typedef struct request { - int len_refid; /* length of referenceid */ - char *refid; /* referenceid */ request_state state; Z_GDU *gdu_request; /* Current request */ @@ -82,7 +82,7 @@ typedef struct request void *clientData; struct request *next; - struct request_q *q; + struct request_q *q; } request; typedef struct request_q @@ -98,8 +98,8 @@ typedef struct request_q */ typedef enum { - ASSOC_NEW, /* not initialized yet */ - ASSOC_UP, /* normal operation */ + ASSOC_NEW, /* not initialized yet or HTTP session */ + ASSOC_UP, /* Z39.50 session is UP */ ASSOC_DEAD /* dead. Close if input arrives */ } association_state; @@ -126,9 +126,9 @@ typedef struct association int maximumRecordSize; int version; /* highest version-bit set (2 or 3) */ - unsigned cs_get_mask; - unsigned cs_put_mask; - unsigned cs_accept_mask; + int cs_get_mask; + int cs_put_mask; + int cs_accept_mask; struct bend_initrequest *init; statserv_options_block *last_control; @@ -150,8 +150,6 @@ void request_delq(request_q *q); request *request_get(request_q *q); void request_release(request *r); -int statserv_must_terminate(void); - int control_association(association *assoc, const char *host, int force); int ir_read(IOCHAN h, int event); @@ -160,6 +158,7 @@ int ir_read(IOCHAN h, int event); /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab