summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_output.c
diff options
context:
space:
mode:
authorjlemon <jlemon@FreeBSD.org>2001-12-13 04:02:31 +0000
committerjlemon <jlemon@FreeBSD.org>2001-12-13 04:02:31 +0000
commit776e8594bd10476806e76e0bc570104fb65c10fd (patch)
tree836f92846371ea112c1b817992522b3747515ebb /sys/netinet/tcp_output.c
parentec4b51f8834b11daf457595f260ddce83f5f06fc (diff)
downloadFreeBSD-src-776e8594bd10476806e76e0bc570104fb65c10fd.zip
FreeBSD-src-776e8594bd10476806e76e0bc570104fb65c10fd.tar.gz
Fix up tabs from cut&n&paste.
Diffstat (limited to 'sys/netinet/tcp_output.c')
-rw-r--r--sys/netinet/tcp_output.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c
index 13f5ca9..9d3dac1 100644
--- a/sys/netinet/tcp_output.c
+++ b/sys/netinet/tcp_output.c
@@ -282,13 +282,13 @@ again:
* Sender silly window avoidance. We transmit under the following
* conditions when len is non-zero:
*
- * - We have a full segment
- * - This is the last buffer in a write()/send() and we are
- * either idle or running NODELAY
- * - we've timed out (e.g. persist timer)
- * - we have more then 1/2 the maximum send window's worth of
- * data (receiver may be limited the window size)
- * - we need to retransmit
+ * - We have a full segment
+ * - This is the last buffer in a write()/send() and we are
+ * either idle or running NODELAY
+ * - we've timed out (e.g. persist timer)
+ * - we have more then 1/2 the maximum send window's worth of
+ * data (receiver may be limited the window size)
+ * - we need to retransmit
*/
if (len) {
if (len == tp->t_maxseg)
@@ -300,7 +300,7 @@ again:
*
* note: the len + off check is almost certainly unnecessary.
*/
- if (!(tp->t_flags & TF_MORETOCOME) && /* normal case */
+ if (!(tp->t_flags & TF_MORETOCOME) && /* normal case */
(idle || (tp->t_flags & TF_NODELAY)) &&
len + off >= so->so_snd.sb_cc &&
(tp->t_flags & TF_NOPUSH) == 0) {
OpenPOWER on IntegriCloud