X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=doc%2Fcomstack.xml;h=65e3d1d5f1465075660ad566bc870c052257e062;hp=0be19367559a21c6417430dec56e2fee4a20937e;hb=e7cef788e6e6ae270dc9a274b5da51e953ca5479;hpb=c2317ad6444bd2a90a45fd519f286a7cef49c776 diff --git a/doc/comstack.xml b/doc/comstack.xml index 0be1936..65e3d1d 100644 --- a/doc/comstack.xml +++ b/doc/comstack.xml @@ -2,55 +2,61 @@ Synopsis (blocking mode) - + @@ -142,7 +148,7 @@ if (buf) - int cs_close(COMSTACK handle); + void cs_close(COMSTACK handle); @@ -398,7 +404,7 @@ if (buf) - char *cs_addrstr(COMSTACK); + const char *cs_addrstr(COMSTACK); @@ -454,7 +460,7 @@ if (buf) - char *cs_addrstr(COMSTACK h); + const char *cs_addrstr(COMSTACK h); @@ -575,19 +581,18 @@ if (buf) Summary and Synopsis - - #include <yaz/comstack.h> + - #include <yaz/tcpip.h> /* this is for TCP/IP and SSL support */ - #include <yaz/unix.h> /* this is for UNIX sockeL support */ + #include /* this is for TCP/IP and SSL support */ + #include /* this is for UNIX socket support */ - COMSTACK cs_create(CS_TYPE type, int blocking, int protocol); COMSTACK cs_createbysocket(int s, CS_TYPE type, int blocking, int protocol); - COMSTACK cs_create_host (const char *str, int blocking, - void **vp); + COMSTACK cs_create_host(const char *str, int blocking, + void **vp); int cs_bind(COMSTACK handle, int mode); @@ -605,21 +610,14 @@ if (buf) int cs_more(COMSTACK handle); - int cs_close(COMSTACK handle); + void cs_close(COMSTACK handle); int cs_look(COMSTACK handle); void *cs_straddr(COMSTACK handle, const char *str); - char *cs_addrstr(COMSTACK h); - - extern int cs_errno; - - void cs_perror(COMSTACK handle char *message); - - const char *cs_stackerr(COMSTACK handle); - - extern const char *cs_errlist[]; + const char *cs_addrstr(COMSTACK h); +]]>