diff options
Diffstat (limited to 'net/l2tp/l2tp_core.h')
| -rw-r--r-- | net/l2tp/l2tp_core.h | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/net/l2tp/l2tp_core.h b/net/l2tp/l2tp_core.h index 56d583e083a..e62204cad4f 100644 --- a/net/l2tp/l2tp_core.h +++ b/net/l2tp/l2tp_core.h @@ -188,7 +188,8 @@ struct l2tp_tunnel {  	int (*recv_payload_hook)(struct sk_buff *skb);  	void (*old_sk_destruct)(struct sock *);  	struct sock		*sock;		/* Parent socket */ -	int			fd; +	int			fd;		/* Parent fd, if tunnel socket +						 * was created by userspace */  	uint8_t			priv[0];	/* private data */  }; @@ -228,6 +229,8 @@ out:  	return tunnel;  } +extern struct sock *l2tp_tunnel_sock_lookup(struct l2tp_tunnel *tunnel); +extern void l2tp_tunnel_sock_put(struct sock *sk);  extern struct l2tp_session *l2tp_session_find(struct net *net, struct l2tp_tunnel *tunnel, u32 session_id);  extern struct l2tp_session *l2tp_session_find_nth(struct l2tp_tunnel *tunnel, int nth);  extern struct l2tp_session *l2tp_session_find_by_ifname(struct net *net, char *ifname);  |