summaryrefslogtreecommitdiff
path: root/source3/rpc_server/mdssvc/mdssvc.c
diff options
context:
space:
mode:
authorRalph Boehme <rb@sernet.de>2014-07-23 09:58:45 +0200
committerRalph Böhme <slow@samba.org>2015-07-07 17:34:28 +0200
commit63dd793cde70a3d3a5bf4144c316b764d687546b (patch)
tree710ebaa015156fef7ba53044b5862253aa527c92 /source3/rpc_server/mdssvc/mdssvc.c
parent5c6e2b2b1fc4514f5f61dd16b6fdc59410edc815 (diff)
downloadsamba-63dd793cde70a3d3a5bf4144c316b764d687546b.tar.gz
s3-mdssvc: add Spotlight RPC stubs
'mdssvc' aka 'Metadata Search Service' is an RPC service used by Apple for passing marshalled Spotlight search queries and results between client to server. Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/rpc_server/mdssvc/mdssvc.c')
-rw-r--r--source3/rpc_server/mdssvc/mdssvc.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/source3/rpc_server/mdssvc/mdssvc.c b/source3/rpc_server/mdssvc/mdssvc.c
new file mode 100644
index 00000000000..20e45f17b4f
--- /dev/null
+++ b/source3/rpc_server/mdssvc/mdssvc.c
@@ -0,0 +1,31 @@
+/*
+ Unix SMB/CIFS implementation.
+ Main metadata server / Spotlight routines
+
+ Copyright (C) Ralph Boehme 2012-2014
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "includes.h"
+#include "mdssvc.h"
+
+#undef DBGC_CLASS
+#define DBGC_CLASS DBGC_RPC_SRV
+
+int mds_dispatch(void)
+{
+ DEBUG(10, ("mds_dispatch\n"));
+ return 0;
+}