From 18a1a4359b299064649f59516a61288f003d3ec5 Mon Sep 17 00:00:00 2001
From: "Michael I. Bushnell" <mib@gnu.org>
Date: Tue, 30 Jan 1996 19:09:39 +0000
Subject: Initial revision

---
 libnetfs/demuxer.c | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)
 create mode 100644 libnetfs/demuxer.c

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));
+}
+
-- 
cgit v1.2.3