ixp_mount.3 (1106B)
1 .TH "IXP_MOUNT" 3 "2010 Jun" "libixp Manual" 2 3 .SH NAME 4 .P 5 ixp_mount, ixp_mountfd, ixp_nsmount, IxpClient 6 7 .SH SYNOPSIS 8 .nf 9 #include <ixp.h> 10 11 IxpClient *ixp_mount(const char *address); 12 13 IxpClient *ixp_mountfd(int fd); 14 15 IxpClient *ixp_nsmount(const char *name); 16 17 typedef struct IxpClient IxpClient; 18 struct IxpClient { 19 int fd; 20 uint msize; 21 uint lastfid; 22 23 /* Private members */ 24 ... 25 } 26 .fi 27 28 .SH PARAMETERS 29 .TP 30 fd 31 A file descriptor which is already connected 32 to a 9P server. 33 .TP 34 address 35 An address (in Plan 9 resource fomat) at 36 which to connect to a 9P server. 37 .TP 38 name 39 The name of a socket in the process's canonical 40 namespace directory. 41 42 .SH DESCRIPTION 43 .P 44 Initiate a 9P connection with the server at IaddressR, 45 connected to on IfdR, or under the process's namespace 46 directory as InameR. 47 48 .SH RETURN VALUE 49 .P 50 A pointer to a new 9P client. 51 52 .SH SEE ALSO 53 .P 54 ixp_open(3), ixp_create(3), ixp_remove(3), ixp_unmount(3) 55 56 57 .\" man code generated by txt2tags 2.5 (http://txt2tags.sf.net) 58 .\" cmdline: txt2tags -o- ixp_mount.man3 59