diff options
author | ths <ths> | 2007-09-17 08:09:42 +0000 |
---|---|---|
committer | ths <ths> | 2007-09-17 08:09:42 +0000 |
commit | ac4f08c15d5663ef032b43d44f25e7a79bfdf7cc (patch) | |
tree | 7beed8bf203003141b9e663ccd05cd36d5d61b6c /qemu/slirp/tcp_output.c | |
parent | 668d05c5667d447440f100f2414868fa133236d8 (diff) |
find -type f | xargs sed -i 's/[\t ]*$//g' # Yes, again. Note the star in the regex.
Diffstat (limited to 'qemu/slirp/tcp_output.c')
-rw-r--r-- | qemu/slirp/tcp_output.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qemu/slirp/tcp_output.c b/qemu/slirp/tcp_output.c index b4be123d..3eddfd38 100644 --- a/qemu/slirp/tcp_output.c +++ b/qemu/slirp/tcp_output.c @@ -356,7 +356,7 @@ send: } m->m_data += if_maxlinkhdr; m->m_len = hdrlen; - + /* * This will always succeed, since we make sure our mbufs * are big enough to hold one MSS packet + header + ... etc. @@ -449,7 +449,7 @@ send: if (SEQ_GT(tp->snd_up, tp->snd_una)) { ti->ti_urp = htons((u_int16_t)(tp->snd_up - ntohl(ti->ti_seq))); -#ifdef notdef +#ifdef notdef if (SEQ_GT(tp->snd_up, tp->snd_nxt)) { ti->ti_urp = htons((u_int16_t)(tp->snd_up - tp->snd_nxt)); #endif @@ -533,12 +533,12 @@ send: m->m_len = hdrlen + len; /* XXX Needed? m_len should be correct */ { - + ((struct ip *)ti)->ip_len = m->m_len; ((struct ip *)ti)->ip_ttl = ip_defttl; ((struct ip *)ti)->ip_tos = so->so_iptos; - + /* #if BSD >= 43 */ /* Don't do IP options... */ /* error = ip_output(m, tp->t_inpcb->inp_options, &tp->t_inpcb->inp_route, |