|
@@ -349,6 +349,8 @@ out:
|
|
return err;
|
|
return err;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+EXPORT_SYMBOL(inet6_bind);
|
|
|
|
+
|
|
int inet6_release(struct socket *sock)
|
|
int inet6_release(struct socket *sock)
|
|
{
|
|
{
|
|
struct sock *sk = sock->sk;
|
|
struct sock *sk = sock->sk;
|
|
@@ -365,6 +367,8 @@ int inet6_release(struct socket *sock)
|
|
return inet_release(sock);
|
|
return inet_release(sock);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+EXPORT_SYMBOL(inet6_release);
|
|
|
|
+
|
|
int inet6_destroy_sock(struct sock *sk)
|
|
int inet6_destroy_sock(struct sock *sk)
|
|
{
|
|
{
|
|
struct ipv6_pinfo *np = inet6_sk(sk);
|
|
struct ipv6_pinfo *np = inet6_sk(sk);
|
|
@@ -428,6 +432,8 @@ int inet6_getname(struct socket *sock, struct sockaddr *uaddr,
|
|
return(0);
|
|
return(0);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+EXPORT_SYMBOL(inet6_getname);
|
|
|
|
+
|
|
int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
|
|
int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
|
|
{
|
|
{
|
|
struct sock *sk = sock->sk;
|
|
struct sock *sk = sock->sk;
|
|
@@ -457,6 +463,8 @@ int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
|
|
return(0);
|
|
return(0);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+EXPORT_SYMBOL(inet6_ioctl);
|
|
|
|
+
|
|
const struct proto_ops inet6_stream_ops = {
|
|
const struct proto_ops inet6_stream_ops = {
|
|
.family = PF_INET6,
|
|
.family = PF_INET6,
|
|
.owner = THIS_MODULE,
|
|
.owner = THIS_MODULE,
|
|
@@ -603,6 +611,8 @@ out_illegal:
|
|
goto out;
|
|
goto out;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+EXPORT_SYMBOL(inet6_register_protosw);
|
|
|
|
+
|
|
void
|
|
void
|
|
inet6_unregister_protosw(struct inet_protosw *p)
|
|
inet6_unregister_protosw(struct inet_protosw *p)
|
|
{
|
|
{
|
|
@@ -619,6 +629,8 @@ inet6_unregister_protosw(struct inet_protosw *p)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+EXPORT_SYMBOL(inet6_unregister_protosw);
|
|
|
|
+
|
|
int inet6_sk_rebuild_header(struct sock *sk)
|
|
int inet6_sk_rebuild_header(struct sock *sk)
|
|
{
|
|
{
|
|
int err;
|
|
int err;
|