diff options
author | Matthew Chapman <matty@samba.org> | 1999-03-16 06:24:24 +0000 |
---|---|---|
committer | Matthew Chapman <matty@samba.org> | 1999-03-16 06:24:24 +0000 |
commit | 517aade8bd6759124ef7c2d9bc0f7059327de36c (patch) | |
tree | d14159b06937d62e87a36dc63541f717d55db812 /source3/rpc_server | |
parent | a6fa61afd20653d8d4d033025dde122d81ac4d9f (diff) | |
download | samba-517aade8bd6759124ef7c2d9bc0f7059327de36c.tar.gz samba-517aade8bd6759124ef7c2d9bc0f7059327de36c.tar.bz2 samba-517aade8bd6759124ef7c2d9bc0f7059327de36c.zip |
Added SVC_QUERY_DISP_NAME (corresponding to the GetServiceDisplayName API).
Needed during preliminary part of SAM replication.
(This used to be commit 03e722cdf502491d09d4c5eb9024d837ae10ab32)
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_svcctl.c | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/source3/rpc_server/srv_svcctl.c b/source3/rpc_server/srv_svcctl.c index 56a0749776..d52816df80 100644 --- a/source3/rpc_server/srv_svcctl.c +++ b/source3/rpc_server/srv_svcctl.c @@ -291,6 +291,44 @@ static void api_svc_enum_svcs_status( uint16 vuid, prs_struct *data, } /******************************************************************* + svc_reply_query_disp_name + ********************************************************************/ +static void svc_reply_query_disp_name(SVC_Q_QUERY_DISP_NAME *q_u, + prs_struct *rdata) +{ + SVC_R_QUERY_DISP_NAME r_u; + fstring svc_name; + uint32 status = 0; + + DEBUG(5,("svc_query_disp_name: %d\n", __LINE__)); + + if (find_lsa_policy_by_hnd(&q_u->scman_pol) == -1) + { + status = 0xC000000 | NT_STATUS_INVALID_HANDLE; + } + + /* for now display name = service name */ + unistr2_to_ascii(svc_name, &q_u->uni_svc_name, sizeof(svc_name)-1); + make_svc_r_query_disp_name(&r_u, svc_name, status); + + /* store the response in the SMB stream */ + svc_io_r_query_disp_name("", &r_u, rdata, 0); + + DEBUG(5,("svc_query_disp_name: %d\n", __LINE__)); +} + +/******************************************************************* + api_svc_query_disp_name + ********************************************************************/ +static void api_svc_query_disp_name( uint16 vuid, prs_struct *data, + prs_struct *rdata ) +{ + SVC_Q_QUERY_DISP_NAME q_u; + svc_io_q_query_disp_name("", &q_u, data, 0); + svc_reply_query_disp_name(&q_u, rdata); +} + +/******************************************************************* array of \PIPE\svcctl operations ********************************************************************/ static struct api_struct api_svc_cmds[] = @@ -299,6 +337,7 @@ static struct api_struct api_svc_cmds[] = { "SVC_OPEN_SC_MAN" , SVC_OPEN_SC_MAN , api_svc_open_sc_man }, { "SVC_OPEN_SERVICE" , SVC_OPEN_SERVICE , api_svc_open_service }, { "SVC_ENUM_SVCS_STATUS", SVC_ENUM_SVCS_STATUS, api_svc_enum_svcs_status }, + { "SVC_QUERY_DISP_NAME" , SVC_QUERY_DISP_NAME , api_svc_query_disp_name }, { NULL , 0 , NULL } }; |