diff options
author | Vlad Yasevich <vladislav.yasevich@hp.com> | 2007-03-23 11:34:36 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-25 22:28:04 -0700 |
commit | 703315712cfccfe0b45ef4aa6994527d8ee95e33 (patch) | |
tree | 618a5aced2dfd2937259b3e99f477b9d1f80e24d /net/sctp/associola.c | |
parent | a5a35e76753d27e782028843a5186f176b50dd16 (diff) |
[SCTP]: Implement SCTP_MAX_BURST socket option.
Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/associola.c')
-rw-r--r-- | net/sctp/associola.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/associola.c b/net/sctp/associola.c index 85af1cb70fe..37a343e1ebb 100644 --- a/net/sctp/associola.c +++ b/net/sctp/associola.c @@ -143,7 +143,7 @@ static struct sctp_association *sctp_association_init(struct sctp_association *a /* Initialize the maximum mumber of new data packets that can be sent * in a burst. */ - asoc->max_burst = sctp_max_burst; + asoc->max_burst = sp->max_burst; /* initialize association timers */ asoc->timeouts[SCTP_EVENT_TIMEOUT_NONE] = 0; |