diff options
author | Jeremy Allison <jra@samba.org> | 2001-02-26 08:10:51 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-02-26 08:10:51 +0000 |
commit | 683ccef0bdfc6a1460087cc3eed2b7ac643d0227 (patch) | |
tree | 3175eb03fba361338da1fb421d4381ea16ee0c27 /source3/rpc_parse | |
parent | 0d54de536c03f941739359a121a337aa33a2dc84 (diff) | |
download | samba-683ccef0bdfc6a1460087cc3eed2b7ac643d0227.tar.gz samba-683ccef0bdfc6a1460087cc3eed2b7ac643d0227.tar.bz2 samba-683ccef0bdfc6a1460087cc3eed2b7ac643d0227.zip |
Started conversion of lsa server code to canonical format (as srv_reg and
srv_samr have been).
Jeremy.
(This used to be commit f434cda9774b4864321b37b0f8f42e6e8dee8d5b)
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r-- | source3/rpc_parse/parse_lsa.c | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/source3/rpc_parse/parse_lsa.c b/source3/rpc_parse/parse_lsa.c index 8654453bcf..a33c759473 100644 --- a/source3/rpc_parse/parse_lsa.c +++ b/source3/rpc_parse/parse_lsa.c @@ -1257,3 +1257,42 @@ BOOL lsa_io_r_close(char *desc, LSA_R_CLOSE *r_c, prs_struct *ps, int depth) return True; } + +/******************************************************************* + Reads or writes an LSA_Q_OPEN_SECRET structure. +********************************************************************/ + +BOOL lsa_io_q_open_secret(char *desc, LSA_Q_OPEN_SECRET *q_c, prs_struct *ps, int depth) +{ + prs_debug(ps, depth, desc, "lsa_io_q_open_secret"); + depth++; + + /* Don't bother to read or write at present... */ + return True; +} + +/******************************************************************* + Reads or writes an LSA_R_OPEN_SECRET structure. +********************************************************************/ + +BOOL lsa_io_r_open_secret(char *desc, LSA_R_OPEN_SECRET *r_c, prs_struct *ps, int depth) +{ + prs_debug(ps, depth, desc, "lsa_io_r_open_secret"); + depth++; + + if(!prs_align(ps)) + return False; + + if(!prs_uint32("dummy1", ps, depth, &r_c->dummy1)) + return False; + if(!prs_uint32("dummy2", ps, depth, &r_c->dummy2)) + return False; + if(!prs_uint32("dummy3", ps, depth, &r_c->dummy3)) + return False; + if(!prs_uint32("dummy4", ps, depth, &r_c->dummy4)) + return False; + if(!prs_uint32("status", ps, depth, &r_c->status)) + return False; + + return True; +} |