2005-11-18 18:54:58 +03:00
|
|
|
/*
|
2006-01-30 21:08:58 +03:00
|
|
|
*(C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
|
|
*See LICENSE file for license details.
|
2005-11-18 18:54:58 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2006-04-03 17:52:05 +04:00
|
|
|
#include <cext.h>
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2006-06-07 21:39:30 +04:00
|
|
|
#define IXP_VERSION "9P2000"
|
2006-04-06 09:55:33 +04:00
|
|
|
#define IXP_NOTAG (unsigned short)~0U /*Dummy tag */
|
|
|
|
#define IXP_NOFID (unsigned int)~0 /*No auth */
|
|
|
|
|
2006-06-17 15:32:49 +04:00
|
|
|
enum { IXP_MAX_VERSION = 32,
|
|
|
|
IXP_MAX_ERROR = 128,
|
|
|
|
IXP_MAX_CACHE = 32,
|
|
|
|
IXP_MAX_MSG = 8192,
|
|
|
|
IXP_MAX_FLEN = 128,
|
|
|
|
IXP_MAX_ULEN = 32,
|
|
|
|
IXP_MAX_WELEM = 16 };
|
2006-01-30 21:08:58 +03:00
|
|
|
|
2006-04-03 17:52:05 +04:00
|
|
|
/* 9P message types */
|
2006-06-17 15:32:49 +04:00
|
|
|
enum { TVERSION = 100,
|
2006-03-23 14:53:41 +03:00
|
|
|
RVERSION,
|
|
|
|
TAUTH = 102,
|
|
|
|
RAUTH,
|
|
|
|
TATTACH = 104,
|
|
|
|
RATTACH,
|
|
|
|
TERROR = 106,
|
|
|
|
RERROR,
|
|
|
|
TFLUSH = 108,
|
|
|
|
RFLUSH,
|
|
|
|
TWALK = 110,
|
|
|
|
RWALK,
|
|
|
|
TOPEN = 112,
|
|
|
|
ROPEN,
|
|
|
|
TCREATE = 114,
|
|
|
|
RCREATE,
|
|
|
|
TREAD = 116,
|
|
|
|
RREAD,
|
|
|
|
TWRITE = 118,
|
|
|
|
RWRITE,
|
|
|
|
TCLUNK = 120,
|
|
|
|
RCLUNK,
|
|
|
|
TREMOVE = 122,
|
|
|
|
RREMOVE,
|
|
|
|
TSTAT = 124,
|
|
|
|
RSTAT,
|
|
|
|
TWSTAT = 126,
|
|
|
|
RWSTAT,
|
2005-11-18 18:54:58 +03:00
|
|
|
};
|
|
|
|
|
2006-03-10 18:49:13 +03:00
|
|
|
/* borrowed from libc.h of Plan 9 */
|
2006-06-17 15:32:49 +04:00
|
|
|
enum { IXP_DMDIR = 0x80000000, /* mode bit for directories */
|
2006-04-06 09:55:33 +04:00
|
|
|
IXP_DMAPPEND = 0x40000000, /* mode bit for append only files */
|
|
|
|
IXP_DMEXCL = 0x20000000, /* mode bit for exclusive use files */
|
|
|
|
IXP_DMMOUNT = 0x10000000, /* mode bit for mounted channel */
|
|
|
|
IXP_DMAUTH = 0x08000000, /* mode bit for authentication file */
|
|
|
|
IXP_DMTMP = 0x04000000, /* mode bit for non-backed-up file */
|
|
|
|
IXP_DMREAD = 0x4<<6, /* mode bit for read permission */
|
|
|
|
IXP_DMWRITE = 0x2<<6, /* mode bit for write permission */
|
2006-06-23 04:47:32 +04:00
|
|
|
IXP_DMEXEC = 0x1<<6 /* mode bit for execute permission */
|
2006-04-06 09:55:33 +04:00
|
|
|
};
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2006-03-10 18:49:13 +03:00
|
|
|
/* modes */
|
2006-06-17 15:32:49 +04:00
|
|
|
enum { IXP_OREAD = 0x00,
|
2006-03-23 14:53:41 +03:00
|
|
|
IXP_OWRITE = 0x01,
|
|
|
|
IXP_ORDWR = 0x02,
|
|
|
|
IXP_OEXEC = 0x03,
|
|
|
|
IXP_OEXCL = 0x04,
|
|
|
|
IXP_OTRUNC = 0x10,
|
|
|
|
IXP_OREXEC = 0x20,
|
|
|
|
IXP_ORCLOSE = 0x40,
|
|
|
|
IXP_OAPPEND = 0x80,
|
2005-11-18 18:54:58 +03:00
|
|
|
};
|
|
|
|
|
2006-03-10 18:49:13 +03:00
|
|
|
/* qid.types */
|
2006-06-17 15:32:49 +04:00
|
|
|
enum { IXP_QTDIR = 0x80,
|
2006-03-23 14:53:41 +03:00
|
|
|
IXP_QTAPPEND = 0x40,
|
|
|
|
IXP_QTEXCL = 0x20,
|
|
|
|
IXP_QTMOUNT = 0x10,
|
|
|
|
IXP_QTAUTH = 0x08,
|
|
|
|
IXP_QTTMP = 0x04,
|
|
|
|
IXP_QTSYMLINK = 0x02,
|
|
|
|
IXP_QTLINK = 0x01,
|
|
|
|
IXP_QTFILE = 0x00,
|
2005-11-18 18:54:58 +03:00
|
|
|
};
|
|
|
|
|
2006-06-17 15:32:49 +04:00
|
|
|
/* from libc.h in p9p */
|
2006-06-23 04:47:32 +04:00
|
|
|
enum { P9OREAD = 0, /* open for read */
|
|
|
|
P9OWRITE = 1, /* write */
|
|
|
|
P9ORDWR = 2, /* read and write */
|
|
|
|
P9OEXEC = 3, /* execute, == read but check execute permission */
|
|
|
|
P9OTRUNC = 16, /* or'ed in (except for exec), truncate file first */
|
|
|
|
P9OCEXEC = 32, /* or'ed in, close on exec */
|
|
|
|
P9ORCLOSE = 64, /* or'ed in, remove on close */
|
|
|
|
P9ODIRECT = 128, /* or'ed in, direct access */
|
|
|
|
P9ONONBLOCK = 256, /* or'ed in, non-blocking call */
|
|
|
|
P9OEXCL = 0x1000, /* or'ed in, exclusive use (create only) */
|
|
|
|
P9OLOCK = 0x2000, /* or'ed in, lock after opening */
|
|
|
|
P9OAPPEND = 0x4000 /* or'ed in, append only */
|
2006-06-17 15:32:49 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* bits in Qid.type */
|
2006-06-23 04:47:32 +04:00
|
|
|
enum { P9QTDIR = 0x80, /* type bit for directories */
|
|
|
|
P9QTAPPEND = 0x40, /* type bit for append only files */
|
|
|
|
P9QTEXCL = 0x20, /* type bit for exclusive use files */
|
|
|
|
P9QTMOUNT = 0x10, /* type bit for mounted channel */
|
|
|
|
P9QTAUTH = 0x08, /* type bit for authentication file */
|
|
|
|
P9QTTMP = 0x04, /* type bit for non-backed-up file */
|
|
|
|
P9QTSYMLINK = 0x02, /* type bit for symbolic link */
|
|
|
|
P9QTFILE = 0x00 /* type bits for plain file */
|
2006-06-17 15:32:49 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* bits in Dir.mode */
|
2006-06-23 04:47:32 +04:00
|
|
|
#define P9DMDIR 0x80000000 /* mode bit for directories */
|
|
|
|
#define P9DMAPPEND 0x40000000 /* mode bit for append only files */
|
|
|
|
#define P9DMEXCL 0x20000000 /* mode bit for exclusive use files */
|
|
|
|
#define P9DMMOUNT 0x10000000 /* mode bit for mounted channel */
|
|
|
|
#define P9DMAUTH 0x08000000 /* mode bit for authentication file */
|
|
|
|
#define P9DMTMP 0x04000000 /* mode bit for non-backed-up file */
|
|
|
|
#define P9DMSYMLINK 0x02000000 /* mode bit for symbolic link (Unix, 9P2000.u) */
|
|
|
|
#define P9DMDEVICE 0x00800000 /* mode bit for device file (Unix, 9P2000.u) */
|
|
|
|
#define P9DMNAMEDPIPE 0x00200000 /* mode bit for named pipe (Unix, 9P2000.u) */
|
|
|
|
#define P9DMSOCKET 0x00100000 /* mode bit for socket (Unix, 9P2000.u) */
|
|
|
|
#define P9DMSETUID 0x00080000 /* mode bit for setuid (Unix, 9P2000.u) */
|
|
|
|
#define P9DMSETGID 0x00040000 /* mode bit for setgid (Unix, 9P2000.u) */
|
2006-06-17 15:32:49 +04:00
|
|
|
|
2006-06-23 04:47:32 +04:00
|
|
|
enum { P9DMREAD = 0x4, /* mode bit for read permission */
|
|
|
|
P9DMWRITE = 0x2, /* mode bit for write permission */
|
|
|
|
P9DMEXEC = 0x1 /* mode bit for execute permission */
|
2006-06-17 15:32:49 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-02-01 16:25:02 +03:00
|
|
|
typedef struct Qid Qid;
|
|
|
|
struct Qid {
|
2006-03-23 14:53:41 +03:00
|
|
|
unsigned char type;
|
|
|
|
unsigned int version;
|
|
|
|
unsigned long long path;
|
2006-02-01 16:25:02 +03:00
|
|
|
/* internal use only */
|
2006-02-10 17:59:30 +03:00
|
|
|
unsigned char dir_type;
|
2006-02-01 16:25:02 +03:00
|
|
|
};
|
2006-01-30 21:08:58 +03:00
|
|
|
|
2006-04-29 20:51:45 +04:00
|
|
|
/* stat structure */
|
2006-06-17 15:32:49 +04:00
|
|
|
typedef struct Stat {
|
2006-03-23 14:53:41 +03:00
|
|
|
unsigned short type;
|
|
|
|
unsigned int dev;
|
|
|
|
Qid qid;
|
|
|
|
unsigned int mode;
|
|
|
|
unsigned int atime;
|
|
|
|
unsigned int mtime;
|
|
|
|
unsigned long long length;
|
2006-06-17 15:32:49 +04:00
|
|
|
char *name;
|
|
|
|
char *uid;
|
|
|
|
char *gid;
|
|
|
|
char *muid;
|
2006-01-30 21:08:58 +03:00
|
|
|
} Stat;
|
|
|
|
|
2006-06-17 15:32:49 +04:00
|
|
|
/* from fcall(3) in plan9port */
|
|
|
|
typedef struct Fcall {
|
|
|
|
unsigned char type;
|
2006-03-23 14:53:41 +03:00
|
|
|
unsigned short tag;
|
|
|
|
unsigned int fid;
|
2006-06-17 15:32:49 +04:00
|
|
|
union {
|
|
|
|
struct { /* Tversion, Rversion */
|
|
|
|
unsigned int msize;
|
|
|
|
char *version;
|
|
|
|
};
|
|
|
|
struct { /* Tflush */
|
|
|
|
unsigned short oldtag;
|
|
|
|
};
|
|
|
|
struct { /* Rerror */
|
|
|
|
char *ename;
|
|
|
|
};
|
|
|
|
struct { /* Ropen, Rcreate */
|
|
|
|
Qid qid; /* +Rattach */
|
|
|
|
unsigned int iounit;
|
|
|
|
};
|
|
|
|
struct { /* Rauth */
|
|
|
|
Qid aqid;
|
|
|
|
};
|
|
|
|
struct { /* Tauth, Tattach */
|
|
|
|
unsigned int afid;
|
|
|
|
char *uname;
|
|
|
|
char *aname;
|
|
|
|
};
|
|
|
|
struct { /* Tcreate */
|
|
|
|
unsigned int perm;
|
|
|
|
char *name;
|
|
|
|
unsigned char mode; /* +Topen */
|
|
|
|
};
|
|
|
|
struct { /* Twalk */
|
|
|
|
unsigned int newfid;
|
|
|
|
unsigned short nwname;
|
|
|
|
char *wname[IXP_MAX_WELEM];
|
|
|
|
};
|
|
|
|
struct { /* Rwalk */
|
|
|
|
unsigned short nwqid;
|
|
|
|
Qid wqid[IXP_MAX_WELEM];
|
|
|
|
};
|
|
|
|
struct { /* Twrite */
|
2006-06-19 12:50:55 +04:00
|
|
|
unsigned long long offset; /* +Tread */
|
2006-06-17 15:32:49 +04:00
|
|
|
/* +Rread */
|
|
|
|
unsigned int count; /* +Tread */
|
2006-06-21 22:36:48 +04:00
|
|
|
char *data;
|
2006-06-17 15:32:49 +04:00
|
|
|
};
|
|
|
|
struct { /* Twstat, Rstat */
|
|
|
|
unsigned short nstat;
|
|
|
|
unsigned char *stat;
|
|
|
|
};
|
|
|
|
};
|
2006-01-30 21:08:58 +03:00
|
|
|
} Fcall;
|
|
|
|
|
|
|
|
typedef struct IXPServer IXPServer;
|
|
|
|
typedef struct IXPConn IXPConn;
|
2006-06-15 03:26:35 +04:00
|
|
|
typedef struct Intmap Intmap;
|
2006-01-30 21:08:58 +03:00
|
|
|
|
2006-06-17 15:32:49 +04:00
|
|
|
typedef struct Intlist Intlist;
|
|
|
|
struct Intmap {
|
2006-06-15 03:26:35 +04:00
|
|
|
unsigned long nhash;
|
|
|
|
Intlist **hash;
|
|
|
|
};
|
|
|
|
|
2006-01-30 21:08:58 +03:00
|
|
|
struct IXPConn {
|
2006-06-17 15:32:49 +04:00
|
|
|
IXPServer *srv;
|
|
|
|
void *aux;
|
|
|
|
int fd;
|
|
|
|
void (*read) (IXPConn *);
|
|
|
|
void (*close) (IXPConn *);
|
|
|
|
char closed;
|
|
|
|
|
|
|
|
/* Implementation details */
|
|
|
|
/* do not use */
|
|
|
|
IXPConn *next;
|
2005-11-18 18:54:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct IXPServer {
|
2006-03-23 14:53:41 +03:00
|
|
|
int running;
|
2006-06-08 12:54:19 +04:00
|
|
|
IXPConn *conn;
|
2006-03-23 14:53:41 +03:00
|
|
|
int maxfd;
|
|
|
|
fd_set rd;
|
2005-11-18 18:54:58 +03:00
|
|
|
};
|
|
|
|
|
2006-06-17 15:32:49 +04:00
|
|
|
typedef struct IXPClient {
|
2006-03-23 14:53:41 +03:00
|
|
|
int fd;
|
|
|
|
unsigned int root_fid;
|
|
|
|
Qid root_qid;
|
|
|
|
Fcall fcall;
|
|
|
|
char *errstr;
|
2006-01-30 21:08:58 +03:00
|
|
|
} IXPClient;
|
|
|
|
|
2006-06-17 15:32:49 +04:00
|
|
|
typedef struct P9Conn P9Conn;
|
|
|
|
typedef struct Fid {
|
2006-06-21 10:51:25 +04:00
|
|
|
P9Conn *conn;
|
2006-06-17 15:32:49 +04:00
|
|
|
unsigned long fid;
|
|
|
|
char omode;
|
|
|
|
char *uid;
|
|
|
|
Qid qid;
|
|
|
|
void *aux;
|
|
|
|
|
|
|
|
/* Implementation details */
|
|
|
|
/* do not use */
|
|
|
|
Intmap *map;
|
|
|
|
} Fid;
|
|
|
|
|
2006-06-23 04:47:32 +04:00
|
|
|
typedef struct P9Req P9Req;
|
|
|
|
struct P9Req {
|
2006-06-21 10:51:25 +04:00
|
|
|
P9Conn *conn;
|
2006-06-17 15:32:49 +04:00
|
|
|
Fid *fid;
|
|
|
|
Fid *newfid;
|
2006-06-23 04:47:32 +04:00
|
|
|
P9Req *oldreq;
|
2006-06-17 15:32:49 +04:00
|
|
|
Fcall ifcall;
|
|
|
|
Fcall ofcall;
|
|
|
|
void *aux;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct P9Srv {
|
2006-06-23 04:47:32 +04:00
|
|
|
void (*attach)(P9Req *r);
|
|
|
|
void (*clunk)(P9Req *r);
|
|
|
|
void (*create)(P9Req *r);
|
|
|
|
void (*flush)(P9Req *r);
|
|
|
|
void (*open)(P9Req *r);
|
|
|
|
void (*read)(P9Req *r);
|
|
|
|
void (*remove)(P9Req *r);
|
|
|
|
void (*stat)(P9Req *r);
|
|
|
|
void (*walk)(P9Req *r);
|
|
|
|
void (*write)(P9Req *r);
|
2006-06-17 15:32:49 +04:00
|
|
|
void (*freefid)(Fid *f);
|
|
|
|
} P9Srv;
|
|
|
|
|
2006-01-30 21:08:58 +03:00
|
|
|
/* client.c */
|
2006-02-12 03:49:33 +03:00
|
|
|
int ixp_client_dial(IXPClient *c, char *address, unsigned int rootfid);
|
|
|
|
void ixp_client_hangup(IXPClient *c);
|
2006-01-30 21:08:58 +03:00
|
|
|
int ixp_client_remove(IXPClient *c, unsigned int newfid, char *filepath);
|
|
|
|
int ixp_client_create(IXPClient *c, unsigned int dirfid, char *name,
|
2006-03-23 14:53:41 +03:00
|
|
|
unsigned int perm, unsigned char mode);
|
2006-01-30 21:08:58 +03:00
|
|
|
int ixp_client_walk(IXPClient *c, unsigned int newfid, char *filepath);
|
2006-05-23 10:17:42 +04:00
|
|
|
int ixp_client_stat(IXPClient *c, unsigned int newfid, char *filepath);
|
|
|
|
int ixp_client_walkopen(IXPClient *c, unsigned int newfid, char *filepath,
|
2006-03-23 14:53:41 +03:00
|
|
|
unsigned char mode);
|
2006-05-23 10:17:42 +04:00
|
|
|
int ixp_client_open(IXPClient *c, unsigned int newfid, unsigned char mode);
|
2006-01-30 21:08:58 +03:00
|
|
|
int ixp_client_read(IXPClient *c, unsigned int fid,
|
2006-03-23 14:53:41 +03:00
|
|
|
unsigned long long offset, void *result,
|
|
|
|
unsigned int res_len);
|
2006-01-30 21:08:58 +03:00
|
|
|
int ixp_client_write(IXPClient *c, unsigned int fid,
|
2006-03-23 14:53:41 +03:00
|
|
|
unsigned long long offset,
|
|
|
|
unsigned int count, unsigned char *data);
|
2006-01-30 21:08:58 +03:00
|
|
|
int ixp_client_close(IXPClient *c, unsigned int fid);
|
2006-02-07 02:32:57 +03:00
|
|
|
int ixp_client_do_fcall(IXPClient * c);
|
2006-01-30 21:08:58 +03:00
|
|
|
|
|
|
|
/* convert.c */
|
2006-06-10 10:18:32 +04:00
|
|
|
void ixp_pack_u8(unsigned char **msg, int *msize, unsigned char val);
|
2006-06-19 05:23:17 +04:00
|
|
|
void ixp_unpack_u8(unsigned char **msg, int *msize, unsigned char *val);
|
2006-06-10 10:18:32 +04:00
|
|
|
void ixp_pack_u16(unsigned char **msg, int *msize, unsigned short val);
|
2006-06-19 05:23:17 +04:00
|
|
|
void ixp_unpack_u16(unsigned char **msg, int *msize, unsigned short *val);
|
2006-06-10 10:18:32 +04:00
|
|
|
void ixp_pack_u32(unsigned char **msg, int *msize, unsigned int val);
|
2006-06-19 05:23:17 +04:00
|
|
|
void ixp_unpack_u32(unsigned char **msg, int *msize, unsigned int *val);
|
2006-06-10 10:18:32 +04:00
|
|
|
void ixp_pack_u64(unsigned char **msg, int *msize, unsigned long long val);
|
2006-06-19 05:23:17 +04:00
|
|
|
void ixp_unpack_u64(unsigned char **msg, int *msize, unsigned long long *val);
|
2006-06-10 10:18:32 +04:00
|
|
|
void ixp_pack_string(unsigned char **msg, int *msize, const char *s);
|
2006-06-19 05:23:17 +04:00
|
|
|
void ixp_unpack_strings(unsigned char **msg, int *msize, unsigned short n, char **strings);
|
|
|
|
void ixp_unpack_string(unsigned char **msg, int *msize, char **string, unsigned short *len);
|
2006-06-10 10:18:32 +04:00
|
|
|
void ixp_pack_data(unsigned char **msg, int *msize, unsigned char *data,
|
2006-03-23 14:53:41 +03:00
|
|
|
unsigned int datalen);
|
2006-06-19 05:23:17 +04:00
|
|
|
void ixp_unpack_data(unsigned char **msg, int *msize, unsigned char **data,
|
2006-03-23 14:53:41 +03:00
|
|
|
unsigned int datalen);
|
2006-06-10 10:18:32 +04:00
|
|
|
void ixp_pack_prefix(unsigned char *msg, unsigned int size,
|
2006-03-23 14:53:41 +03:00
|
|
|
unsigned char id, unsigned short tag);
|
2006-06-12 15:34:59 +04:00
|
|
|
void ixp_unpack_prefix(unsigned char **msg, unsigned int *size,
|
2006-03-23 14:53:41 +03:00
|
|
|
unsigned char *id, unsigned short *tag);
|
2006-06-10 10:18:32 +04:00
|
|
|
void ixp_pack_qid(unsigned char **msg, int *msize, Qid *qid);
|
2006-06-19 05:23:17 +04:00
|
|
|
void ixp_unpack_qid(unsigned char **msg, int *msize, Qid *qid);
|
2006-06-10 10:18:32 +04:00
|
|
|
void ixp_pack_stat(unsigned char **msg, int *msize, Stat *stat);
|
2006-06-19 05:23:17 +04:00
|
|
|
void ixp_unpack_stat(unsigned char **msg, int *msize, Stat *stat);
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2006-06-17 15:32:49 +04:00
|
|
|
/* request.c */
|
2006-06-23 04:47:32 +04:00
|
|
|
void respond(P9Req *r, char *error);
|
2006-06-17 15:32:49 +04:00
|
|
|
void serve_9pcon(IXPConn *c);
|
|
|
|
|
2006-06-15 03:26:35 +04:00
|
|
|
/* intmap.c */
|
|
|
|
void initmap(Intmap *m, unsigned long nhash, void *hash);
|
2006-06-21 10:51:25 +04:00
|
|
|
void incref_map(Intmap *m);
|
|
|
|
void decref_map(Intmap *m);
|
2006-06-15 03:26:35 +04:00
|
|
|
void freemap(Intmap *map, void (*destroy)(void*));
|
2006-06-17 15:32:49 +04:00
|
|
|
void execmap(Intmap *map, void (*destroy)(void*));
|
2006-06-15 03:26:35 +04:00
|
|
|
void* lookupkey(Intmap *map, unsigned long id);
|
|
|
|
void* insertkey(Intmap *map, unsigned long id, void *v);
|
|
|
|
int caninsertkey(Intmap *map, unsigned long id, void *v);
|
|
|
|
void* deletekey(Intmap *map, unsigned long id);
|
|
|
|
|
2005-11-18 18:54:58 +03:00
|
|
|
/* message.c */
|
2006-01-30 21:08:58 +03:00
|
|
|
unsigned short ixp_sizeof_stat(Stat *stat);
|
2006-03-01 09:51:04 +03:00
|
|
|
unsigned int ixp_fcall2msg(void *msg, Fcall *fcall, unsigned int msglen);
|
|
|
|
unsigned int ixp_msg2fcall(Fcall *call, void *msg, unsigned int msglen);
|
2006-01-30 21:08:58 +03:00
|
|
|
|
|
|
|
/* server.c */
|
2006-06-17 15:32:49 +04:00
|
|
|
IXPConn *ixp_server_open_conn(IXPServer *s, int fd, void *aux,
|
2006-02-03 18:15:36 +03:00
|
|
|
void (*read)(IXPConn *c), void (*close)(IXPConn *c));
|
|
|
|
void ixp_server_close_conn(IXPConn *c);
|
2006-01-30 21:08:58 +03:00
|
|
|
char *ixp_server_loop(IXPServer *s);
|
2006-02-03 18:15:36 +03:00
|
|
|
unsigned int ixp_server_receive_fcall(IXPConn *c, Fcall *fcall);
|
|
|
|
int ixp_server_respond_fcall(IXPConn *c, Fcall *fcall);
|
|
|
|
int ixp_server_respond_error(IXPConn *c, Fcall *fcall, char *errstr);
|
2006-02-03 18:42:59 +03:00
|
|
|
void ixp_server_close(IXPServer *s);
|
2006-01-30 21:08:58 +03:00
|
|
|
|
|
|
|
/* socket.c */
|
|
|
|
int ixp_connect_sock(char *address);
|
|
|
|
int ixp_create_sock(char *address, char **errstr);
|
|
|
|
|
|
|
|
/* transport.c */
|
|
|
|
unsigned int ixp_send_message(int fd, void *msg, unsigned int msize, char **errstr);
|
|
|
|
unsigned int ixp_recv_message(int fd, void *msg, unsigned int msglen, char **errstr);
|