summaryrefslogtreecommitdiff
path: root/libnetfs
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-01-30 19:09:39 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-01-30 19:09:39 +0000
commit18a1a4359b299064649f59516a61288f003d3ec5 (patch)
treeb653a9d0a5d432914565b26491169860a8922933 /libnetfs
parent62ab9a3899a49a5c52539d00e10f6d59a4dcc763 (diff)
Initial revision
Diffstat (limited to 'libnetfs')
-rw-r--r--libnetfs/demuxer.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/libnetfs/demuxer.c b/libnetfs/demuxer.c
new file mode 100644
index 00000000..522c13d2
--- /dev/null
+++ b/libnetfs/demuxer.c
@@ -0,0 +1,41 @@
+/*
+ Copyright (C) 1996 Free Software Foundation, Inc.
+ Written by Michael I. Bushnell, p/BSG.
+
+ This file is part of the GNU Hurd.
+
+ The GNU Hurd 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 2, or (at
+ your option) any later version.
+
+ The GNU Hurd 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, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
+
+#include "netfs.h"
+
+int
+netfs_demuxer (mach_msg_header_t *inp,
+ mach_msg_header_t *outp)
+{
+ int diskfs_fs_server (mach_msg_header_t *, mach_msg_header_t *);
+ int diskfs_io_server (mach_msg_header_t *, mach_msg_header_t *);
+ int diskfs_fsys_server (mach_msg_header_t *, mach_msg_header_t *);
+ int diskfs_exec_startup_server (mach_msg_header_t *, mach_msg_header_t *);
+ int diskfs_ifsock_server (mach_msg_header_t *, mach_msg_header_t *);
+
+ return (diskfs_io_server (inp, outp)
+ || diskfs_fs_server (inp, outp)
+ || ports_notify_server (inp, outp)
+ || diskfs_fsys_server (inp, outp)
+ || diskfs_exec_startup_server (inp, outp)
+ || ports_interrupt_server (inp, outp)
+ || (diskfs_shortcut_ifsock ? diskfs_ifsock_server (inp, outp) : 0));
+}
+