]> arthur.barton.de Git - netatalk.git/blobdiff - libatalk/dsi/dsi_close.c
Fix unnamed union inside struct
[netatalk.git] / libatalk / dsi / dsi_close.c
index 3e7a2fbd99d5ad99f2d3f499228aa0e1d902de3b..199954fce69ccfdeca888cf4ab3277ccb0ca4d01 100644 (file)
@@ -1,23 +1,30 @@
 /*
+ *
  * Copyright (c) 1997 Adrian Sun (asun@zoology.washington.edu)
  * All rights reserved. See COPYRIGHT.
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif /* HAVE_CONFIG_H */
+
 #include <stdio.h>
 #include <stdlib.h>
+#include <arpa/inet.h>
+
 #include <atalk/dsi.h>
-#include <netatalk/endian.h>
 
 void dsi_close(DSI *dsi)
 {
   /* server generated. need to set all the fields. */
-  dsi->header.dsi_flags = DSIFL_REQUEST;
-  dsi->header.dsi_command = DSIFUNC_CLOSE;
-  dsi->header.dsi_requestID = htons(dsi_serverID(dsi));
-  dsi->header.dsi_code = dsi->header.dsi_reserved = htonl(0);
-  dsi->cmdlen = 0; 
-
-  dsi_send(dsi);
-  dsi->proto_close(dsi);
+  if (!(dsi->flags & DSI_SLEEPING) && !(dsi->flags & DSI_DISCONNECTED)) {
+      dsi->header.dsi_flags = DSIFL_REQUEST;
+      dsi->header.dsi_command = DSIFUNC_CLOSE;
+      dsi->header.dsi_requestID = htons(dsi_serverID(dsi));
+      dsi->header.dsi_data.dsi_code = dsi->header.dsi_reserved = htonl(0);
+      dsi->cmdlen = 0; 
+      dsi_send(dsi);
+      dsi->proto_close(dsi);
+  }
   free(dsi);
 }