aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/sunrpc/svc_xprt.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/sunrpc/svc_xprt.h b/include/linux/sunrpc/svc_xprt.h
index 31a44f441fd1..986a5a07044b 100644
--- a/include/linux/sunrpc/svc_xprt.h
+++ b/include/linux/sunrpc/svc_xprt.h
@@ -10,6 +10,9 @@
10#include <linux/sunrpc/svc.h> 10#include <linux/sunrpc/svc.h>
11 11
12struct svc_xprt_ops { 12struct svc_xprt_ops {
13 struct svc_xprt *(*xpo_create)(struct svc_serv *,
14 struct sockaddr *, int,
15 int);
13 struct svc_xprt *(*xpo_accept)(struct svc_xprt *); 16 struct svc_xprt *(*xpo_accept)(struct svc_xprt *);
14 int (*xpo_has_wspace)(struct svc_xprt *); 17 int (*xpo_has_wspace)(struct svc_xprt *);
15 int (*xpo_recvfrom)(struct svc_rqst *); 18 int (*xpo_recvfrom)(struct svc_rqst *);
@@ -36,5 +39,6 @@ struct svc_xprt {
36int svc_reg_xprt_class(struct svc_xprt_class *); 39int svc_reg_xprt_class(struct svc_xprt_class *);
37void svc_unreg_xprt_class(struct svc_xprt_class *); 40void svc_unreg_xprt_class(struct svc_xprt_class *);
38void svc_xprt_init(struct svc_xprt_class *, struct svc_xprt *); 41void svc_xprt_init(struct svc_xprt_class *, struct svc_xprt *);
42int svc_create_xprt(struct svc_serv *, char *, unsigned short, int);
39 43
40#endif /* SUNRPC_SVC_XPRT_H */ 44#endif /* SUNRPC_SVC_XPRT_H */