]> arthur.barton.de Git - netatalk.git/blob - libatalk/asp/asp_cmdreply.c
Initial revision
[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 #include <string.h>
25 #include <sys/types.h>
26 #include <sys/uio.h>
27 #include <atalk/atp.h>
28 #include <atalk/asp.h>
29
30 #if defined(BSD) || defined(BSD4_3)
31 #define memmove(a, b, n)   bcopy((b), (a), (n))
32 #endif
33
34 int asp_cmdreply( asp, result)
35     ASP         asp;
36     int         result;
37 {
38     struct iovec        iov[ ASP_MAXPACKETS ];
39     struct atp_block    atpb;
40     int                 iovcnt, buflen;
41     char                *buf;
42
43     /* unpack data into a format that atp likes. it needs to get
44      * 4-byte headers prepended before each ASP_CMDSIZ chunk. */
45     buf = (char *) asp->data;
46     buflen = asp->datalen;
47     asp->write_count += buflen;
48     result = htonl(result);
49
50     iovcnt = 0;
51     do {
52         iov[ iovcnt ].iov_base = buf;
53         memmove(buf + ASP_HDRSIZ, buf, buflen);
54
55         if ( iovcnt == 0 ) {
56             memcpy( iov[ iovcnt ].iov_base, &result, ASP_HDRSIZ );
57         } else {
58             memset( iov[ iovcnt ].iov_base, 0, ASP_HDRSIZ );
59         }
60
61         if ( buflen > ASP_CMDSIZ ) {
62           buf += ASP_CMDMAXSIZ;
63           buflen -= ASP_CMDSIZ;
64           iov[ iovcnt ].iov_len = ASP_CMDMAXSIZ;
65         } else {
66           iov[ iovcnt ].iov_len = buflen + ASP_HDRSIZ;
67           buflen = 0;
68         }
69         iovcnt++;
70     } while ( buflen > 0 );
71
72     atpb.atp_saddr = &asp->asp_sat;
73     atpb.atp_sresiov = iov;
74     atpb.atp_sresiovcnt = iovcnt;
75     if ( atp_sresp( asp->asp_atp, &atpb ) < 0 ) {
76         return( -1 );
77     }
78     asp->asp_seq++;
79
80     return( 0 );
81 }