diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-02-12 11:24:14 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-02-25 11:19:00 +0100 |
commit | 982261fec4707d0c8d0723d90d9c0e465d98aa93 (patch) | |
tree | a62031c4393800cdcc9717455f55c16245c8b995 /libnetfs/netfs.h | |
parent | 41b88dab57df5a1b490550fd8c4b80788ce55a81 (diff) | |
download | hurd-982261fec4707d0c8d0723d90d9c0e465d98aa93.tar.gz hurd-982261fec4707d0c8d0723d90d9c0e465d98aa93.tar.bz2 hurd-982261fec4707d0c8d0723d90d9c0e465d98aa93.zip |
libnetfs: fix receiver lookups in fsys server functions
* mutations.h: Add translation functions.
* netfs.h (struct netfs_control): New declaration.
* priv.h: Define translation functions.
* fsys-get-options.c: Fix receiver lookups.
* fsys-getroot.c: Likewise.
* fsys-goaway.c: Likewise.
* fsys-set-options.c: Likewise.
* fsys-syncfs.c: Likewise.
* fsysstubs.c: Likewise.
Diffstat (limited to 'libnetfs/netfs.h')
-rw-r--r-- | libnetfs/netfs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libnetfs/netfs.h b/libnetfs/netfs.h index 5d50f57d..aef4a3dd 100644 --- a/libnetfs/netfs.h +++ b/libnetfs/netfs.h @@ -100,6 +100,11 @@ struct node struct dirmod *dirmod_reqs; }; +struct netfs_control +{ + struct port_info pi; +}; + /* The user must define this variable. Set this to the name of the filesystem server. */ extern char *netfs_server_name; @@ -437,6 +442,7 @@ extern auth_t netfs_auth_server_port; /* Mig gook. */ typedef struct protid *protid_t; +typedef struct netfs_control *control_t; #endif /* _HURD_NETFS_H_ */ |