summaryrefslogtreecommitdiff
path: root/source3/rpc_client
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2005-06-13 13:16:55 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:57:11 -0500
commit9f1335b0158aa136630f2591030d1e3e4f6fa124 (patch)
tree325d513e709048f3dbfe257dd97f4951011781aa /source3/rpc_client
parent075649d3c2a5a9951c3a5de9aca0bdc9f7012961 (diff)
downloadsamba-9f1335b0158aa136630f2591030d1e3e4f6fa124.tar.gz
samba-9f1335b0158aa136630f2591030d1e3e4f6fa124.tar.bz2
samba-9f1335b0158aa136630f2591030d1e3e4f6fa124.zip
r7534: Add missing cli_srvsvc_net_share_set_info-function and
rpcclient-testers. Needed in preparation of share-ACL migration in net. Guenther (This used to be commit 08d124079f4ed1ad008a83510c05b430c86fbf78)
Diffstat (limited to 'source3/rpc_client')
-rw-r--r--source3/rpc_client/cli_srvsvc.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/source3/rpc_client/cli_srvsvc.c b/source3/rpc_client/cli_srvsvc.c
index dd12367e03..a8a6bc1ff6 100644
--- a/source3/rpc_client/cli_srvsvc.c
+++ b/source3/rpc_client/cli_srvsvc.c
@@ -301,6 +301,9 @@ WERROR cli_srvsvc_net_share_get_info(struct cli_state *cli,
info502_str->sd = dup_sec_desc(mem_ctx, info502_str->sd);
break;
}
+ default:
+ DEBUG(0,("unimplemented info-level: %d\n", info_level));
+ break;
}
done:
@@ -310,6 +313,53 @@ WERROR cli_srvsvc_net_share_get_info(struct cli_state *cli,
return result;
}
+WERROR cli_srvsvc_net_share_set_info(struct cli_state *cli,
+ TALLOC_CTX *mem_ctx,
+ const char *sharename,
+ uint32 info_level,
+ SRV_SHARE_INFO *info)
+{
+ prs_struct qbuf, rbuf;
+ SRV_Q_NET_SHARE_SET_INFO q;
+ SRV_R_NET_SHARE_SET_INFO r;
+ WERROR result = W_ERROR(ERRgeneral);
+
+ ZERO_STRUCT(q);
+ ZERO_STRUCT(r);
+
+ /* Initialise parse structures */
+
+ prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
+ prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
+
+ /* Initialise input parameters */
+
+ init_srv_q_net_share_set_info(&q, cli->srv_name_slash, sharename,
+ info_level, info);
+
+ /* Marshall data and send request */
+
+ if (!srv_io_q_net_share_set_info("", &q, &qbuf, 0) ||
+ !rpc_api_pipe_req(cli, PI_SRVSVC, SRV_NET_SHARE_SET_INFO, &qbuf, &rbuf))
+ goto done;
+
+ /* Unmarshall response */
+
+ if (!srv_io_r_net_share_set_info("", &r, &rbuf, 0))
+ goto done;
+
+ result = r.status;
+
+ if (!W_ERROR_IS_OK(result))
+ goto done;
+
+ done:
+ prs_mem_free(&qbuf);
+ prs_mem_free(&rbuf);
+
+ return result;
+}
+
WERROR cli_srvsvc_net_share_del(struct cli_state *cli, TALLOC_CTX *mem_ctx,
const char *sharename)
{