[Devel] [RFC PATCH 3/5] net: new protocol operation fbind() introduced
Stanislav Kinsbursky
skinsbursky at parallels.com
Wed Aug 15 09:22:14 PDT 2012
This operation is used to bind socket to specified file.
Signed-off-by: Stanislav Kinsbursky <skinsbursky at parallels.com>
---
include/linux/net.h | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/linux/net.h b/include/linux/net.h
index e9ac2df..843cb75 100644
--- a/include/linux/net.h
+++ b/include/linux/net.h
@@ -157,6 +157,7 @@ struct kiocb;
struct sockaddr;
struct msghdr;
struct module;
+struct path;
struct proto_ops {
int family;
@@ -165,6 +166,7 @@ struct proto_ops {
int (*bind) (struct socket *sock,
struct sockaddr *myaddr,
int sockaddr_len);
+ int (*fbind) (struct file *file, struct socket *sock);
int (*connect) (struct socket *sock,
struct sockaddr *vaddr,
int sockaddr_len, int flags);
More information about the Devel
mailing list