r15455: Add rpccli_samr_query_dom_info2() and return the comment string in
authorGünther Deschner <gd@samba.org>
Fri, 5 May 2006 08:26:34 +0000 (08:26 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 16:16:48 +0000 (11:16 -0500)
samr_query_domain_info(2) for consistency reasons.

Guenther

source/rpc_client/cli_samr.c
source/rpc_server/srv_samr_nt.c

index 09fb9974136f13eeee19a6929d6cc77dca3df77a..1da7a47ea610dfe4a9e41e60a5bee0a44dfb3d83 100644 (file)
@@ -1124,6 +1124,48 @@ NTSTATUS rpccli_samr_query_dom_info(struct rpc_pipe_client *cli,
        return result;
 }
 
+/* Query domain info2 */
+
+NTSTATUS rpccli_samr_query_dom_info2(struct rpc_pipe_client *cli,
+                                    TALLOC_CTX *mem_ctx, 
+                                    POLICY_HND *domain_pol,
+                                    uint16 switch_value,
+                                    SAM_UNK_CTR *ctr)
+{
+       prs_struct qbuf, rbuf;
+       SAMR_Q_QUERY_DOMAIN_INFO2 q;
+       SAMR_R_QUERY_DOMAIN_INFO2 r;
+       NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
+
+       DEBUG(10,("cli_samr_query_dom_info2\n"));
+
+       ZERO_STRUCT(q);
+       ZERO_STRUCT(r);
+
+       /* Marshall data and send request */
+
+       init_samr_q_query_domain_info2(&q, domain_pol, switch_value);
+
+       r.ctr = ctr;
+
+       CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_QUERY_DOMAIN_INFO2,
+               q, r,
+               qbuf, rbuf,
+               samr_io_q_query_domain_info2,
+               samr_io_r_query_domain_info2,
+               NT_STATUS_UNSUCCESSFUL); 
+
+       /* Return output parameters */
+
+       if (!NT_STATUS_IS_OK(result = r.status)) {
+               goto done;
+       }
+
+ done:
+
+       return result;
+}
+
 /* Set domain info */
 
 NTSTATUS rpccli_samr_set_domain_info(struct rpc_pipe_client *cli,
index 4507c1c88bb0e7555f133ceef3dfed506a9e16f6..c9e6b552c8d440073652ed52912666538179c30c 100644 (file)
@@ -2302,6 +2302,9 @@ NTSTATUS _samr_query_domain_info(pipes_struct *p,
                        
                        init_unk_info3(&ctr->info.inf3, nt_logout);
                        break;
+               case 0x04:
+                       init_unk_info4(&ctr->info.inf4, lp_serverstring());
+                       break;
                case 0x05:
                        init_unk_info5(&ctr->info.inf5, get_global_sam_name());
                        break;