diff options
author | bubulle <bubulle@alioth.debian.org> | 2012-01-26 19:58:37 +0000 |
---|---|---|
committer | bubulle <bubulle@alioth.debian.org> | 2012-01-26 19:58:37 +0000 |
commit | cb25bc5ca98dff7a896f596f9f1586a4739ad8ec (patch) | |
tree | 31bd310956a0c533e3e46cb88aec6e00b5eedf53 /source3/librpc/gen_ndr/srv_dfsblobs.c | |
parent | 5f021ee1efe415ba8fe4281d0622204a68074ea8 (diff) | |
download | samba-cb25bc5ca98dff7a896f596f9f1586a4739ad8ec.tar.gz |
Load samba-3.6.2 into branches/samba/upstream.upstream/3.6.2
git-svn-id: svn://svn.debian.org/svn/pkg-samba/branches/samba/upstream@3992 fc4039ab-9d04-0410-8cac-899223bdd6b0
Diffstat (limited to 'source3/librpc/gen_ndr/srv_dfsblobs.c')
-rw-r--r-- | source3/librpc/gen_ndr/srv_dfsblobs.c | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/source3/librpc/gen_ndr/srv_dfsblobs.c b/source3/librpc/gen_ndr/srv_dfsblobs.c new file mode 100644 index 0000000000..06b5726e0b --- /dev/null +++ b/source3/librpc/gen_ndr/srv_dfsblobs.c @@ -0,0 +1,111 @@ +/* + * Unix SMB/CIFS implementation. + * server auto-generated by pidl. DO NOT MODIFY! + */ + +#include "includes.h" +#include "ntdomain.h" +#include "librpc/gen_ndr/srv_dfsblobs.h" + +static bool api_dfs_GetDFSReferral(struct pipes_struct *p) +{ + const struct ndr_interface_call *call; + struct ndr_pull *pull; + struct ndr_push *push; + enum ndr_err_code ndr_err; + struct dfs_GetDFSReferral *r; + + call = &ndr_table_dfsblobs.calls[NDR_DFS_GETDFSREFERRAL]; + + r = talloc(talloc_tos(), struct dfs_GetDFSReferral); + if (r == NULL) { + return false; + } + + pull = ndr_pull_init_blob(&p->in_data.data, r); + if (pull == NULL) { + talloc_free(r); + return false; + } + + pull->flags |= LIBNDR_FLAG_REF_ALLOC; + if (p->endian) { + pull->flags |= LIBNDR_FLAG_BIGENDIAN; + } + ndr_err = call->ndr_pull(pull, NDR_IN, r); + if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { + talloc_free(r); + return false; + } + + if (DEBUGLEVEL >= 10) { + NDR_PRINT_FUNCTION_DEBUG(dfs_GetDFSReferral, NDR_IN, r); + } + + ZERO_STRUCT(r->out); + r->out.resp = talloc_zero(r, struct dfs_referral_resp); + if (r->out.resp == NULL) { + talloc_free(r); + return false; + } + + _dfs_GetDFSReferral(p, r); + + if (p->rng_fault_state) { + talloc_free(r); + /* Return true here, srv_pipe_hnd.c will take care */ + return true; + } + + if (DEBUGLEVEL >= 10) { + NDR_PRINT_FUNCTION_DEBUG(dfs_GetDFSReferral, NDR_OUT | NDR_SET_VALUES, r); + } + + push = ndr_push_init_ctx(r); + if (push == NULL) { + talloc_free(r); + return false; + } + + /* + * carry over the pointer count to the reply in case we are + * using full pointer. See NDR specification for full pointers + */ + push->ptr_count = pull->ptr_count; + + ndr_err = call->ndr_push(push, NDR_OUT, r); + if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { + talloc_free(r); + return false; + } + + p->out_data.rdata = ndr_push_blob(push); + talloc_steal(p->mem_ctx, p->out_data.rdata.data); + + talloc_free(r); + + return true; +} + + +/* Tables */ +static struct api_struct api_dfsblobs_cmds[] = +{ + {"DFS_GETDFSREFERRAL", NDR_DFS_GETDFSREFERRAL, api_dfs_GetDFSReferral}, +}; + +void dfsblobs_get_pipe_fns(struct api_struct **fns, int *n_fns) +{ + *fns = api_dfsblobs_cmds; + *n_fns = sizeof(api_dfsblobs_cmds) / sizeof(struct api_struct); +} + +NTSTATUS rpc_dfsblobs_init(const struct rpc_srv_callbacks *rpc_srv_cb) +{ + return rpc_srv_register(SMB_RPC_INTERFACE_VERSION, "dfsblobs", "dfsblobs", &ndr_table_dfsblobs, api_dfsblobs_cmds, sizeof(api_dfsblobs_cmds) / sizeof(struct api_struct), rpc_srv_cb); +} + +NTSTATUS rpc_dfsblobs_shutdown(void) +{ + return rpc_srv_unregister(&ndr_table_dfsblobs); +} |