From 44f1485f0b10fdbb1f9adf833e0255affd56360c Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 7 Feb 2008 10:41:04 +0100 Subject: Remove unused marshalling for NET_DSR_GESITENAME. Guenther (This used to be commit c2682273fdbe35dce0a9caffb829c8693e3cd845) --- source3/rpc_parse/parse_net.c | 72 ------------------------------------------- 1 file changed, 72 deletions(-) (limited to 'source3/rpc_parse') diff --git a/source3/rpc_parse/parse_net.c b/source3/rpc_parse/parse_net.c index 8eeefb678f..c68d9300b9 100644 --- a/source3/rpc_parse/parse_net.c +++ b/source3/rpc_parse/parse_net.c @@ -3476,75 +3476,3 @@ bool net_io_r_dsr_getdcname(const char *desc, NET_R_DSR_GETDCNAME *r_t, return True; } - -/******************************************************************* - Inits a NET_Q_DSR_GETSITENAME structure. -********************************************************************/ - -void init_net_q_dsr_getsitename(NET_Q_DSR_GETSITENAME *r_t, const char *computer_name) -{ - DEBUG(5, ("init_net_q_dsr_getsitename\n")); - - r_t->ptr_computer_name = (computer_name != NULL); - init_unistr2(&r_t->uni_computer_name, computer_name, UNI_STR_TERMINATE); -} - -/******************************************************************* - Reads or writes an NET_Q_DSR_GETSITENAME structure. -********************************************************************/ - -bool net_io_q_dsr_getsitename(const char *desc, NET_Q_DSR_GETSITENAME *r_t, - prs_struct *ps, int depth) -{ - if (r_t == NULL) - return False; - - prs_debug(ps, depth, desc, "net_io_q_dsr_getsitename"); - depth++; - - if (!prs_uint32("ptr_computer_name", ps, depth, &r_t->ptr_computer_name)) - return False; - - if (!smb_io_unistr2("computer_name", &r_t->uni_computer_name, - r_t->ptr_computer_name, ps, depth)) - return False; - - if (!prs_align(ps)) - return False; - - return True; -} - -/******************************************************************* - Reads or writes an NET_R_DSR_GETSITENAME structure. -********************************************************************/ - -bool net_io_r_dsr_getsitename(const char *desc, NET_R_DSR_GETSITENAME *r_t, - prs_struct *ps, int depth) -{ - if (r_t == NULL) - return False; - - prs_debug(ps, depth, desc, "net_io_r_dsr_getsitename"); - depth++; - - if (!prs_uint32("ptr_site_name", ps, depth, &r_t->ptr_site_name)) - return False; - - if (!prs_align(ps)) - return False; - - if (!smb_io_unistr2("site_name", &r_t->uni_site_name, - r_t->ptr_site_name, ps, depth)) - return False; - - if (!prs_align(ps)) - return False; - - if (!prs_werror("result", ps, depth, &r_t->result)) - return False; - - return True; -} - - -- cgit