r4274: make the prototype RAP netshareenum call return something a bit more sensible.
[metze/samba/wip.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
25 /* At this moment these are just dummy functions, but you might get the
26  * idea. */
27
28 NTSTATUS rap_netshareenum(struct smbsrv_request *req,
29                           struct rap_NetShareEnum *r)
30 {
31         int i;
32         r->out.status = 0;
33         r->out.available = dcesrv_common_get_count_of_shares(req, NULL);
34         r->out.info = talloc_array_p(req,
35                                      union rap_shareenum_info, r->out.available);
36
37         for (i=0;i<r->out.available;i++) {
38                 strncpy(r->out.info[i].info1.name, 
39                         dcesrv_common_get_share_name(req, NULL, i),
40                         sizeof(r->out.info[0].info1.name));
41                 r->out.info[i].info1.pad = 0;
42                 r->out.info[i].info1.type = dcesrv_common_get_share_type(req, NULL, i);
43                 r->out.info[i].info1.comment = talloc_strdup(req, 
44                                                              dcesrv_common_get_share_comment(req, NULL, i));
45         }
46         
47         return NT_STATUS_OK;
48 }
49
50 NTSTATUS rap_netserverenum2(struct smbsrv_request *req,
51                                    struct rap_NetServerEnum2 *r)
52 {
53         r->out.status = 0;
54         r->out.available = 0;
55         return NT_STATUS_OK;
56 }