2 Copyright (C) 2010 by Ronnie Sahlberg <ronniesahlberg@gmail.com>
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published by
6 the Free Software Foundation; either version 2.1 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program; if not, see <http://www.gnu.org/licenses/>.
18 #include "win32_compat.h"
26 #include "libnfs-zdr.h"
28 #include "libnfs-raw.h"
29 #include "libnfs-private.h"
30 #include "libnfs-raw-nfs.h"
33 int rpc_nfsacl_null_async(struct rpc_context
*rpc
, rpc_cb cb
, void *private_data
)
37 pdu
= rpc_allocate_pdu(rpc
, NFSACL_PROGRAM
, NFSACL_V3
, NFSACL3_NULL
, cb
, private_data
, (zdrproc_t
)zdr_void
, 0);
39 rpc_set_error(rpc
, "Out of memory. Failed to allocate pdu for nfsacl/null call");
43 if (rpc_queue_pdu(rpc
, pdu
) != 0) {
44 rpc_set_error(rpc
, "Out of memory. Failed to queue pdu for nfsacl/null call");
45 rpc_free_pdu(rpc
, pdu
);
53 int rpc_nfsacl_getacl_async(struct rpc_context
*rpc
, rpc_cb cb
, struct GETACL3args
*args
, void *private_data
)
57 pdu
= rpc_allocate_pdu(rpc
, NFSACL_PROGRAM
, NFSACL_V3
, NFSACL3_GETACL
, cb
, private_data
, (zdrproc_t
)zdr_GETACL3res
, sizeof(GETACL3res
));
59 rpc_set_error(rpc
, "Out of memory. Failed to allocate pdu for nfsacl/getacl call");
63 if (zdr_GETACL3args(&pdu
->zdr
, args
) == 0) {
64 rpc_set_error(rpc
, "ZDR error: Failed to encode GETACL3args");
65 rpc_free_pdu(rpc
, pdu
);
69 if (rpc_queue_pdu(rpc
, pdu
) != 0) {
70 rpc_set_error(rpc
, "Out of memory. Failed to queue pdu for nfsacl/getacl call");
71 rpc_free_pdu(rpc
, pdu
);
78 int rpc_nfsacl_setacl_async(struct rpc_context
*rpc
, rpc_cb cb
, struct SETACL3args
*args
, void *private_data
)
82 pdu
= rpc_allocate_pdu(rpc
, NFSACL_PROGRAM
, NFSACL_V3
, NFSACL3_SETACL
, cb
, private_data
, (zdrproc_t
)zdr_SETACL3res
, sizeof(SETACL3res
));
84 rpc_set_error(rpc
, "Out of memory. Failed to allocate pdu for nfsacl/setacl call");
88 if (zdr_SETACL3args(&pdu
->zdr
, args
) == 0) {
89 rpc_set_error(rpc
, "ZDR error: Failed to encode SETACL3args");
90 rpc_free_pdu(rpc
, pdu
);
94 if (rpc_queue_pdu(rpc
, pdu
) != 0) {
95 rpc_set_error(rpc
, "Out of memory. Failed to queue pdu for nfsacl/setacl call");
96 rpc_free_pdu(rpc
, pdu
);