c69ba2d1687ee61c2ba005d875f5440a52e9f42a
[mat/samba.git] / source4 / ntvfs / ipc / rap_server.c
1 /* 
2    Unix SMB/CIFS implementation.
3    RAP handlers
4
5    Copyright (C) Volker Lendecke 2004
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23 #include "rap.h"
24 #include "librpc/gen_ndr/ndr_srvsvc.h"
25
26 /* At this moment these are just dummy functions, but you might get the
27  * idea. */
28
29 NTSTATUS rap_netshareenum(struct smbsrv_request *req,
30                           struct rap_NetShareEnum *r)
31 {
32         int i;
33         r->out.status = 0;
34         r->out.available = dcesrv_common_get_count_of_shares(req, NULL);
35         r->out.info = talloc_array(req,
36                                      union rap_shareenum_info, r->out.available);
37
38         for (i=0;i<r->out.available;i++) {
39                 strncpy(r->out.info[i].info1.name, 
40                         dcesrv_common_get_share_name(req, NULL, i),
41                         sizeof(r->out.info[0].info1.name));
42                 r->out.info[i].info1.pad = 0;
43                 r->out.info[i].info1.type = dcesrv_common_get_share_type(req, NULL, i);
44                 r->out.info[i].info1.comment = talloc_strdup(req, 
45                                                              dcesrv_common_get_share_comment(req, NULL, i));
46         }
47         
48         return NT_STATUS_OK;
49 }
50
51 NTSTATUS rap_netserverenum2(struct smbsrv_request *req,
52                                    struct rap_NetServerEnum2 *r)
53 {
54         r->out.status = 0;
55         r->out.available = 0;
56         return NT_STATUS_OK;
57 }