X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fatalk%2Fdsi.h;h=e16681a4eee95bbafc3d376065c2264dac631345;hb=cdb7047fb6897c1ad8b4ac264001d44154bf144d;hp=0616774da18da49e2afb74ccc971bd13d40b6d19;hpb=604970a27806297452761db2383b60f644cede0a;p=netatalk.git diff --git a/include/atalk/dsi.h b/include/atalk/dsi.h index 0616774d..e16681a4 100644 --- a/include/atalk/dsi.h +++ b/include/atalk/dsi.h @@ -6,19 +6,15 @@ #ifndef _ATALK_DSI_H #define _ATALK_DSI_H -#include #include #include +#include #include +#include #include #include #include -#include - -#ifdef __OpenBSD__ -#include -#endif /* What a DSI packet looks like: 0 32 @@ -61,12 +57,10 @@ typedef struct DSI { dsi_proto protocol; struct dsi_block header; struct sockaddr_storage server, client; - struct itimerval timer; - - int in_write; /* in the middle of writing multiple packets, signal handlers - * can't write to the socket - */ + int tickle; /* tickle count */ + int in_write; /* in the middle of writing multiple packets, + signal handlers can't write to the socket */ int msg_request; /* pending message to the client */ int down_request; /* pending SIGUSR1 down in 5 mn */ @@ -77,9 +71,7 @@ typedef struct DSI { size_t statuslen; size_t datalen, cmdlen; off_t read_count, write_count; - int asleep; /* client won't reply AFP 0x7a ? */ - /* inited = initialized?, child = a child?, noreply = send reply? */ - char child, inited, noreply; + uint32_t flags; /* DSI flags like DSI_SLEEPING, DSI_DISCONNECTED */ const char *program; int socket, serversock; @@ -115,6 +107,7 @@ typedef struct DSI { /* DSI session options */ #define DSIOPT_SERVQUANT 0x00 /* server request quantum */ #define DSIOPT_ATTNQUANT 0x01 /* attention quantum */ +#define DSIOPT_REPLCSIZE 0x02 /* AFP replaycache size supported by the server (that's us) */ /* DSI Commands */ #define DSIFUNC_CLOSE 1 /* DSICloseSession */ @@ -148,6 +141,17 @@ typedef struct DSI { /* default port number */ #define DSI_AFPOVERTCP_PORT 548 +/* DSI session State flags */ +#define DSI_DATA (1 << 0) /* we have received a DSI command */ +#define DSI_RUNNING (1 << 1) /* we have received a AFP command */ +#define DSI_SLEEPING (1 << 2) /* we're sleeping after FPZzz */ +#define DSI_EXTSLEEP (1 << 3) /* we're sleeping after FPZzz */ +#define DSI_DISCONNECTED (1 << 4) /* we're in diconnected state after a socket error */ +#define DSI_DIE (1 << 5) /* SIGUSR1, going down in 5 minutes */ +#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 */ + /* basic initialization: dsi_init.c */ extern DSI *dsi_init (const dsi_proto /*protocol*/, const char * /*program*/, @@ -157,7 +161,7 @@ extern DSI *dsi_init (const dsi_proto /*protocol*/, extern void dsi_setstatus (DSI *, char *, const size_t); /* in dsi_getsess.c */ -extern DSI *dsi_getsession (DSI *, server_child *, const int); +extern afp_child_t *dsi_getsession (DSI *, server_child *, const int); extern void dsi_kill (int); @@ -168,7 +172,6 @@ extern int dsi_cmdreply (DSI *, const int); extern int dsi_tickle (DSI *); extern void dsi_getstatus (DSI *); extern void dsi_close (DSI *); -extern void dsi_sleep (DSI *, const int ); #define DSI_NOWAIT 1 /* low-level stream commands -- in dsi_stream.c */