summaryrefslogtreecommitdiff
path: root/hostmux
diff options
context:
space:
mode:
authorMarcus Brinkmann <marcus@gnu.org>2002-05-13 17:39:37 +0000
committerMarcus Brinkmann <marcus@gnu.org>2002-05-13 17:39:37 +0000
commite787787ab06b9739e04c04320fd6749d10ca8d64 (patch)
tree3d01bfbe0e09d09a671b73c2acbeb1098236e578 /hostmux
parent105f667e7a15b63ea62842f3a0b540c0f71f02a6 (diff)
libnetfs/
2002-05-13 Marcus Brinkmann <marcus@gnu.org> * io-version.c: New file. * Makefile (IOSRCS): Add io-version.c. * fsstubs.c (netfs_S_io_server_version): Function removed. * netfs.h (netfs_server_name, netfs_server_version): New external variables to be defined by the user. ftpfs/ 2002-05-13 Marcus Brinkmann <marcus@gnu.org> * ftpfs.c (netfs_server_name, netfs_server_version): New variables. hostmux/ 2002-05-13 Marcus Brinkmann <marcus@gnu.org> * hostmux.c (netfs_server_name, netfs_server_version): New variables. nfs/ 2002-05-13 Marcus Brinkmann <marcus@gnu.org> * main.c: Include <version.h>. (netfs_server_name, netfs_server_version, argp_program_version): New variables. trans/ 2002-05-13 Marcus Brinkmann <marcus@gnu.org> * fakeroot.c (netfs_server_name, netfs_server_version): New variables. usermux/ 2002-05-13 Marcus Brinkmann <marcus@gnu.org> * usermux.c (netfs_server_name, netfs_server_version): New variables.
Diffstat (limited to 'hostmux')
-rw-r--r--hostmux/ChangeLog5
-rw-r--r--hostmux/hostmux.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/hostmux/ChangeLog b/hostmux/ChangeLog
index d2df93e7..064785d6 100644
--- a/hostmux/ChangeLog
+++ b/hostmux/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-13 Marcus Brinkmann <marcus@gnu.org>
+
+ * hostmux.c (netfs_server_name, netfs_server_version): New
+ variables.
+
2002-03-10 Neal H Walfield <neal@cs.uml.edu>
* mux.c (lookup_addrinfo): Renamed from lookup_hostent. Change HE
diff --git a/hostmux/hostmux.c b/hostmux/hostmux.c
index fd5bc748..b0a72693 100644
--- a/hostmux/hostmux.c
+++ b/hostmux/hostmux.c
@@ -1,6 +1,6 @@
/* Multiplexing filesystems by host
- Copyright (C) 1997 Free Software Foundation, Inc.
+ Copyright (C) 1997, 2002 Free Software Foundation, Inc.
Written by Miles Bader <miles@gnu.ai.mit.edu>
This file is part of the GNU Hurd.
@@ -30,6 +30,8 @@
const char *argp_program_version = STANDARD_HURD_VERSION (hostmux);
+char *netfs_server_name = "hostmux";
+char *netfs_server_version = HURD_VERSION;
int netfs_maxsymlinks = 25;
volatile struct mapped_time_value *hostmux_mapped_time;