diff options
author | Ivo De Decker <ivo.dedecker@ugent.be> | 2013-05-10 13:33:02 +0200 |
---|---|---|
committer | Ivo De Decker <ivo.dedecker@ugent.be> | 2013-05-10 13:33:02 +0200 |
commit | 31202ad025bcdeb2585d18dc3f4641b5cf9c0ec4 (patch) | |
tree | 32c20d66684ac97b86e55495146e9a676bfae85a /source3/autoconf/librpc/gen_ndr/srv_auth.c | |
parent | 2865eba17fddda6c49f1209ca92d539111e7ff93 (diff) | |
download | samba-31202ad025bcdeb2585d18dc3f4641b5cf9c0ec4.tar.gz |
Imported Upstream version 4.0.0+dfsg1upstream/4.0.0+dfsg1
Diffstat (limited to 'source3/autoconf/librpc/gen_ndr/srv_auth.c')
-rw-r--r-- | source3/autoconf/librpc/gen_ndr/srv_auth.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/source3/autoconf/librpc/gen_ndr/srv_auth.c b/source3/autoconf/librpc/gen_ndr/srv_auth.c new file mode 100644 index 0000000000..00aae17183 --- /dev/null +++ b/source3/autoconf/librpc/gen_ndr/srv_auth.c @@ -0,0 +1,30 @@ +/* + * Unix SMB/CIFS implementation. + * server auto-generated by pidl. DO NOT MODIFY! + */ + +#include "includes.h" +#include "ntdomain.h" +#include "autoconf/librpc/gen_ndr/srv_auth.h" + + +/* Tables */ +static struct api_struct api_auth_cmds[] = +{ +}; + +void auth_get_pipe_fns(struct api_struct **fns, int *n_fns) +{ + *fns = api_auth_cmds; + *n_fns = sizeof(api_auth_cmds) / sizeof(struct api_struct); +} + +NTSTATUS rpc_auth_init(const struct rpc_srv_callbacks *rpc_srv_cb) +{ + return rpc_srv_register(SMB_RPC_INTERFACE_VERSION, "auth", "auth", &ndr_table_auth, api_auth_cmds, sizeof(api_auth_cmds) / sizeof(struct api_struct), rpc_srv_cb); +} + +NTSTATUS rpc_auth_shutdown(void) +{ + return rpc_srv_unregister(&ndr_table_auth); +} |