blob: 74d2b463cc95e61baced94ff3e6aea3913b506ee [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08002/*
3 * NET Generic infrastructure for Network protocols.
4 *
5 * Authors: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08006 */
7#ifndef _TIMEWAIT_SOCK_H
8#define _TIMEWAIT_SOCK_H
9
10#include <linux/slab.h>
Paul Gortmaker187f1882011-11-23 20:12:59 -050011#include <linux/bug.h>
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -080012#include <net/sock.h>
13
14struct timewait_sock_ops {
Christoph Lametere18b8902006-12-06 20:33:20 -080015 struct kmem_cache *twsk_slab;
Catalin Marinas7e56b5d2008-11-21 16:45:22 -080016 char *twsk_slab_name;
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -080017 unsigned int twsk_obj_size;
18 int (*twsk_unique)(struct sock *sk,
19 struct sock *sktw, void *twp);
YOSHIFUJI Hideaki42b67852006-10-10 19:42:09 -070020 void (*twsk_destructor)(struct sock *sk);
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -080021};
22
23static inline int twsk_unique(struct sock *sk, struct sock *sktw, void *twp)
24{
25 if (sk->sk_prot->twsk_prot->twsk_unique != NULL)
26 return sk->sk_prot->twsk_prot->twsk_unique(sk, sktw, twp);
27 return 0;
28}
29
YOSHIFUJI Hideaki42b67852006-10-10 19:42:09 -070030static inline void twsk_destructor(struct sock *sk)
31{
32 if (sk->sk_prot->twsk_prot->twsk_destructor != NULL)
33 sk->sk_prot->twsk_prot->twsk_destructor(sk);
34}
35
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -080036#endif /* _TIMEWAIT_SOCK_H */