2007-12-31 06:07:15 +03:00
|
|
|
/*
|
|
|
|
* linux/include/linux/sunrpc/svc_xprt.h
|
|
|
|
*
|
|
|
|
* RPC server transport I/O
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SUNRPC_SVC_XPRT_H
|
|
|
|
#define SUNRPC_SVC_XPRT_H
|
|
|
|
|
|
|
|
#include <linux/sunrpc/svc.h>
|
|
|
|
|
|
|
|
struct svc_xprt_ops {
|
2007-12-31 06:07:23 +03:00
|
|
|
int (*xpo_recvfrom)(struct svc_rqst *);
|
|
|
|
int (*xpo_sendto)(struct svc_rqst *);
|
2007-12-31 06:07:15 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct svc_xprt_class {
|
|
|
|
const char *xcl_name;
|
|
|
|
struct module *xcl_owner;
|
|
|
|
struct svc_xprt_ops *xcl_ops;
|
|
|
|
struct list_head xcl_list;
|
2007-12-31 06:07:21 +03:00
|
|
|
u32 xcl_max_payload;
|
2007-12-31 06:07:15 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct svc_xprt {
|
|
|
|
struct svc_xprt_class *xpt_class;
|
|
|
|
struct svc_xprt_ops *xpt_ops;
|
|
|
|
};
|
|
|
|
|
|
|
|
int svc_reg_xprt_class(struct svc_xprt_class *);
|
|
|
|
void svc_unreg_xprt_class(struct svc_xprt_class *);
|
|
|
|
void svc_xprt_init(struct svc_xprt_class *, struct svc_xprt *);
|
|
|
|
|
|
|
|
#endif /* SUNRPC_SVC_XPRT_H */
|