diff options
author | Xin Long <lucien.xin@gmail.com> | 2018-11-18 16:08:52 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-11-19 12:25:43 -0800 |
commit | a1e3a0590f9bd232f3a03fd87226a4a99bd5ec92 (patch) | |
tree | 297cba2473cc25cc11b9aa5d5bc49a3b6b3d9e81 /include/net/sctp | |
parent | 2cc0eeb67636e0339ad7b6cdfa305f63983642af (diff) | |
download | linux-a1e3a0590f9bd232f3a03fd87226a4a99bd5ec92.tar.gz |
sctp: add subscribe per asoc
The member subscribe should be per asoc, so that sockopt SCTP_EVENT
in the next patch can subscribe a event from one asoc only.
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/sctp')
-rw-r--r-- | include/net/sctp/structs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h index bc7808aa2760..7eaa294d938d 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h @@ -2077,6 +2077,8 @@ struct sctp_association { int sent_cnt_removable; + __u16 subscribe; + __u64 abandoned_unsent[SCTP_PR_INDEX(MAX) + 1]; __u64 abandoned_sent[SCTP_PR_INDEX(MAX) + 1]; }; |