X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fatalk%2Fdsi.h;h=baaa960c9f031f838c025f4856231975ee406f23;hb=b0bcb8f6b0571592a50ce039882c9319e012a270;hp=dc32f6e3779496edffa20d9ddcbd88992db82f41;hpb=327257d3290c7a2723791c9b755a5b05a6b7ce74;p=netatalk.git diff --git a/include/atalk/dsi.h b/include/atalk/dsi.h index dc32f6e3..baaa960c 100644 --- a/include/atalk/dsi.h +++ b/include/atalk/dsi.h @@ -6,19 +6,16 @@ #ifndef _ATALK_DSI_H #define _ATALK_DSI_H -#include #include #include +#include #include - +#include #include + #include #include -#include - -#ifdef __OpenBSD__ -#include -#endif +#include /* What a DSI packet looks like: 0 32 @@ -55,9 +52,11 @@ struct dsi_block { #define DSI_CMDSIZ 8192 #define DSI_DATASIZ 8192 + /* child and parent processes might interpret a couple of these * differently. */ typedef struct DSI { + AFPObj *AFPobj; dsi_proto protocol; struct dsi_block header; struct sockaddr_storage server, client; @@ -91,16 +90,16 @@ typedef struct DSI { #endif #ifdef USE_ZEROCONF + char *bonjourname; /* server name as UTF8 maxlen MAXINSTANCENAMELEN */ int zeroconf_registered; #endif - /* buffer for OSX deadlock */ + /* DSI readahead buffer used for buffered reads in dsi_peek */ + size_t dsireadbuf; /* size of the DSI readahead buffer used in dsi_peek() */ char *buffer; char *start; char *eof; char *end; - int maxsize; - } DSI; /* DSI flags */ @@ -155,6 +154,8 @@ typedef struct DSI { #define DSI_NOREPLY (1 << 6) /* in dsi_write we generate our own replies */ #define DSI_RECONSOCKET (1 << 7) /* we have a new socket from primary reconnect */ #define DSI_RECONINPROG (1 << 8) /* used in the new session in reconnect */ +#define DSI_AFP_LOGGED_OUT (1 << 9) /* client called afp_logout, quit on next EOF from socket */ +#define DSI_GOT_ECONNRESET (1 << 10) /* got ECONNRESET from client => exit */ /* basic initialization: dsi_init.c */ extern DSI *dsi_init (const dsi_proto /*protocol*/, @@ -183,6 +184,7 @@ extern ssize_t dsi_stream_write (DSI *, void *, const size_t, const int mode); extern size_t dsi_stream_read (DSI *, void *, const size_t); extern int dsi_stream_send (DSI *, void *, size_t); extern int dsi_stream_receive (DSI *, void *, const size_t, size_t *); +extern int dsi_disconnect(DSI *dsi); #ifdef WITH_SENDFILE extern ssize_t dsi_stream_read_file(DSI *, int, off_t off, const size_t len);