output.c (96916090f488986a4ebb8e9ffa6a3b50881d5ccd) output.c (b9031d9d87b24e24cd32ea15b5f4220a1e8da909)
1/* SCTP kernel implementation
2 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 *
6 * This file is part of the SCTP kernel implementation
7 *
8 * These functions handle output processing.

--- 534 unchanged lines hidden (view full) ---

543 * transport protocol are ECN-capable."
544 *
545 * Now setting the ECT bit all the time, as it should not cause
546 * any problems protocol-wise even if our peer ignores it.
547 *
548 * Note: The works for IPv6 layer checks this bit too later
549 * in transmission. See IP6_ECN_flow_xmit().
550 */
1/* SCTP kernel implementation
2 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 *
6 * This file is part of the SCTP kernel implementation
7 *
8 * These functions handle output processing.

--- 534 unchanged lines hidden (view full) ---

543 * transport protocol are ECN-capable."
544 *
545 * Now setting the ECT bit all the time, as it should not cause
546 * any problems protocol-wise even if our peer ignores it.
547 *
548 * Note: The works for IPv6 layer checks this bit too later
549 * in transmission. See IP6_ECN_flow_xmit().
550 */
551 INET_ECN_xmit(nskb->sk);
551 (*tp->af_specific->ecn_capable)(nskb->sk);
552
553 /* Set up the IP options. */
554 /* BUG: not implemented
555 * For v4 this all lives somewhere in sk->sk_opt...
556 */
557
558 /* Dump that on IP! */
559 if (asoc && asoc->peer.last_sent_to != tp) {

--- 190 unchanged lines hidden ---
552
553 /* Set up the IP options. */
554 /* BUG: not implemented
555 * For v4 this all lives somewhere in sk->sk_opt...
556 */
557
558 /* Dump that on IP! */
559 if (asoc && asoc->peer.last_sent_to != tp) {

--- 190 unchanged lines hidden ---