blob: cbd684e01cf7fb27e6168496cb549c455f3dda8a [file] [log] [blame]
Eric W. Biederman4db67e82012-08-06 08:42:04 +00001#ifndef __NETNS_SCTP_H__
2#define __NETNS_SCTP_H__
3
4struct netns_sctp {
5 /* This is the global local address list.
6 * We actively maintain this complete list of addresses on
7 * the system by catching address add/delete events.
8 *
9 * It is a list of sctp_sockaddr_entry.
10 */
11 struct list_head local_addr_list;
12 struct list_head addr_waitq;
13 struct timer_list addr_wq_timer;
14 struct list_head auto_asconf_splist;
15 spinlock_t addr_wq_lock;
16
17 /* Lock that protects the local_addr_list writers */
18 spinlock_t local_addr_lock;
19};
20
21#endif /* __NETNS_SCTP_H__ */