]> arthur.barton.de Git - netatalk.git/blob - libatalk/dsi/dsi_attn.c
massive commenting/autoconf changes
[netatalk.git] / libatalk / dsi / dsi_attn.c
1 /*
2  * $Id: dsi_attn.c,v 1.3 2001-06-29 14:14:46 rufustfirefly Exp $
3  *
4  * Copyright (c) 1997 Adrian Sun (asun@zoology.washington.edu)
5  * All rights reserved. See COPYRIGHT.
6  */
7
8 #ifdef HAVE_CONFIG_H
9 #include "config.h"
10 #endif /* HAVE_CONFIG_H */
11
12 #include <stdio.h>
13 #include <string.h>
14 #include <signal.h>
15 #include <sys/types.h>
16
17 #include <atalk/dsi.h>
18 #include <atalk/afp.h>
19 #include <netatalk/endian.h>
20
21 #ifndef MIN
22 #define MIN(a,b) ((a) < (b) ? (a) : (b))
23 #endif /* MIN */
24
25 /* send an attention. this may get called at any time, so we can't use
26  * DSI buffers to send one. */
27 int dsi_attention(DSI *dsi, AFPUserBytes flags)
28 {
29   /* header + AFPUserBytes */
30   char block[DSI_BLOCKSIZ + sizeof(AFPUserBytes)];
31   sigset_t oldset;
32   u_int32_t len, nlen;
33   u_int16_t id;
34
35   id = htons(dsi_serverID(dsi));
36   flags = htons(flags);
37   len = MIN(sizeof(flags), dsi->attn_quantum);
38   nlen = htonl(len);
39
40   memset(block, 0, sizeof(block));
41   block[0] = DSIFL_REQUEST; /* sending a request */
42   block[1] = DSIFUNC_ATTN;  /* it's an attention */
43   memcpy(block + 2, &id, sizeof(id));
44   /* code = 0 */
45   memcpy(block + 8, &nlen, sizeof(nlen));
46   memcpy(block + 16, &flags, sizeof(flags));
47   /* reserved = 0 */
48
49   /* send an attention */
50   sigprocmask(SIG_BLOCK, &dsi->sigblockset, &oldset);
51   len = dsi_stream_write(dsi, block, DSI_BLOCKSIZ + len);
52   sigprocmask(SIG_SETMASK, &oldset, NULL);
53
54   return len;
55 }