ixp_mount, ixp_mountfd, ixp_nsmount, IxpClient
- Provided by: libixp-dev (Version: 0.6~20121202+hg148-2)
- Source: libixp
- Report a bug
#include <ixp.h>
IxpClient *ixp_mount(const char *address);
IxpClient *ixp_mountfd(int fd);
IxpClient *ixp_nsmount(const char *name);
typedef struct IxpClient IxpClient;
struct IxpClient {
int fd;
uint msize;
uint lastfid;
/* Private members */
...
}
Initiate a 9P connection with the server at address, connected to on fd, or under the process's namespace directory as name.
A pointer to a new 9P client.