diff options
| author | rsc <devnull@localhost> | 2003-12-11 17:48:38 +0000 |
|---|---|---|
| committer | rsc <devnull@localhost> | 2003-12-11 17:48:38 +0000 |
| commit | 32f69c36e0eec1227934bbd34854bfebd88686f2 (patch) | |
| tree | 1587e9de84816b77168afa81c1594cc686809910 /include/fs.h | |
| parent | ac244f8d287a6119155ea672c8fd13c487c5e4c7 (diff) | |
| download | plan9port-32f69c36e0eec1227934bbd34854bfebd88686f2.tar.gz plan9port-32f69c36e0eec1227934bbd34854bfebd88686f2.zip | |
Add support for user-level 9P servers/clients and various bug fixes to go with them.
Diffstat (limited to 'include/fs.h')
| -rw-r--r-- | include/fs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/fs.h b/include/fs.h index 219b2774..38442709 100644 --- a/include/fs.h +++ b/include/fs.h @@ -12,7 +12,7 @@ typedef struct Fsys Fsys; typedef struct Fid Fid; Fsys *fsinit(int); -Fsys *fsmount(int); +Fsys *fsmount(int, char*); int fsversion(Fsys*, int, char*, int); Fid *fsauth(Fsys*, char*); @@ -34,6 +34,7 @@ struct Dir *fsdirfstat(Fid*); int fsdirwstat(Fsys*, char*, struct Dir*); int fsdirfwstat(Fid*, struct Dir*); Fid *fsroot(Fsys*); +Fsys *nsmount(char*, char*); #ifdef __cplusplus } |
