r25598: Add missing become_root/unbecome_root around calls of add_aliases.
[samba.git] / source / rpc_server / srv_epmapper_nt.c
1 /* 
2  *  Unix SMB/CIFS implementation.
3  *  RPC Pipe client / server routines for the endpoint mapper
4  *  Copyright (C) Jelmer Vernooij       2007.
5  *  
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 3 of the License, or
9  *  (at your option) any later version.
10  *  
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *  
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
18  */
19
20 /* This is the implementation of the dfs pipe. */
21
22 #include "includes.h"
23
24 uint32 _epm_MapAuth(pipes_struct *p, struct epm_MapAuth *r) 
25 {
26         /* FIXME */
27         return 0;
28 }
29
30 uint32 _epm_MgmtDelete(pipes_struct *p, struct epm_MgmtDelete *r)
31 {
32         /* FIXME */
33         return 0;
34 }
35
36 uint32 _epm_InqObject(pipes_struct *p, struct epm_InqObject *r)
37 {
38         /* FIXME */
39         return 0;
40 }
41
42 uint32 _epm_LookupHandleFree(pipes_struct *p, struct epm_LookupHandleFree *r)
43 {
44         /* FIXME */
45         return 0;
46 }
47
48 uint32 _epm_Map(pipes_struct *p, struct epm_Map *r)
49 {
50         /* FIXME */
51         return 0;
52 }
53
54 uint32 _epm_Lookup(pipes_struct *p, struct epm_Lookup *r)
55 {
56         /* FIXME */
57         return 0;
58 }
59
60 uint32 _epm_Delete(pipes_struct *p, struct epm_Delete *r)
61 {
62         /* FIXME */
63         return 0;
64 }
65
66 uint32 _epm_Insert(pipes_struct *p, struct epm_Insert *r)
67 {
68         /* FIXME */
69         return 0;
70 }