]> arthur.barton.de Git - netatalk.git/blob - libatalk/asp/asp_cmdreply.c
Added missing include <sys/socket.h>.
[netatalk.git] / libatalk / asp / asp_cmdreply.c
1 /*
2  * Copyright (c) 1990,1991 Regents of The University of Michigan.
3  * All Rights Reserved.
4  *
5  * Permission to use, copy, modify, and distribute this software and
6  * its documentation for any purpose and without fee is hereby granted,
7  * provided that the above copyright notice appears in all copies and
8  * that both that copyright notice and this permission notice appear
9  * in supporting documentation, and that the name of The University
10  * of Michigan not be used in advertising or publicity pertaining to
11  * distribution of the software without specific, written prior
12  * permission. This software is supplied as is without expressed or
13  * implied warranties of any kind.
14  *
15  *      Research Systems Unix Group
16  *      The University of Michigan
17  *      c/o Mike Clark
18  *      535 W. William Street
19  *      Ann Arbor, Michigan
20  *      +1-313-763-0525
21  *      netatalk@itd.umich.edu
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #include "config.h"
26 #endif
27
28 #include <string.h>
29 #include <sys/types.h>
30 #include <sys/uio.h>
31 #include <sys/socket.h>
32
33 #include <atalk/atp.h>
34 #include <atalk/asp.h>
35
36 #if defined(BSD) || defined(BSD4_3)
37 #define memmove(a, b, n)   bcopy((b), (a), (n))
38 #endif
39
40 int asp_cmdreply( asp, result)
41     ASP         asp;
42     int         result;
43 {
44     struct iovec        iov[ ASP_MAXPACKETS ];
45     struct atp_block    atpb;
46     int                 iovcnt, buflen;
47     char                *buf;
48
49     /* unpack data into a format that atp likes. it needs to get
50      * 4-byte headers prepended before each ASP_CMDSIZ chunk. */
51     buf = (char *) asp->data;
52     buflen = asp->datalen;
53     asp->write_count += buflen;
54     result = htonl(result);
55
56     iovcnt = 0;
57     do {
58         iov[ iovcnt ].iov_base = buf;
59         memmove(buf + ASP_HDRSIZ, buf, buflen);
60
61         if ( iovcnt == 0 ) {
62             memcpy( iov[ iovcnt ].iov_base, &result, ASP_HDRSIZ );
63         } else {
64             memset( iov[ iovcnt ].iov_base, 0, ASP_HDRSIZ );
65         }
66
67         if ( buflen > ASP_CMDSIZ ) {
68           buf += ASP_CMDMAXSIZ;
69           buflen -= ASP_CMDSIZ;
70           iov[ iovcnt ].iov_len = ASP_CMDMAXSIZ;
71         } else {
72           iov[ iovcnt ].iov_len = buflen + ASP_HDRSIZ;
73           buflen = 0;
74         }
75         iovcnt++;
76     } while ( buflen > 0 );
77
78     atpb.atp_saddr = &asp->asp_sat;
79     atpb.atp_sresiov = iov;
80     atpb.atp_sresiovcnt = iovcnt;
81     if ( atp_sresp( asp->asp_atp, &atpb ) < 0 ) {
82         return( -1 );
83     }
84     asp->asp_seq++;
85
86     return( 0 );
87 }