projects
/
reactos.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
- Uncomment some SYN handling code
[reactos.git]
/
reactos
/
lib
/
drivers
/
oskittcp
/
oskittcp
/
tcp_output.c
diff --git
a/reactos/lib/drivers/oskittcp/oskittcp/tcp_output.c
b/reactos/lib/drivers/oskittcp/oskittcp/tcp_output.c
index
5f51c92
..
422306b
100644
(file)
--- a/
reactos/lib/drivers/oskittcp/oskittcp/tcp_output.c
+++ b/
reactos/lib/drivers/oskittcp/oskittcp/tcp_output.c
@@
-86,9
+86,6
@@
tcp_output(tp)
int idle, sendalot;
struct rmxp_tao *taop;
struct rmxp_tao tao_noncached;
int idle, sendalot;
struct rmxp_tao *taop;
struct rmxp_tao tao_noncached;
-#ifdef __REACTOS__
- struct mbuf *n;
-#endif
OS_DbgPrint(OSK_MID_TRACE,("Called\n"));
OS_DbgPrint(OSK_MID_TRACE,("Called\n"));
@@
-411,7
+408,6
@@
send:
* CC or CC.new.
*/
case TH_SYN:
* CC or CC.new.
*/
case TH_SYN:
-#if 0
opt[optlen++] = TCPOPT_NOP;
opt[optlen++] = TCPOPT_NOP;
opt[optlen++] = tp->t_flags & TF_SENDCCNEW ?
opt[optlen++] = TCPOPT_NOP;
opt[optlen++] = TCPOPT_NOP;
opt[optlen++] = tp->t_flags & TF_SENDCCNEW ?
@@
-419,7
+415,6
@@
send:
opt[optlen++] = TCPOLEN_CC;
*(u_int32_t *)&opt[optlen] = htonl(tp->cc_send);
optlen += 4;
opt[optlen++] = TCPOLEN_CC;
*(u_int32_t *)&opt[optlen] = htonl(tp->cc_send);
optlen += 4;
-#endif
break;
/*
break;
/*
@@
-742,8
+737,7
@@
send:
data block */
while (NULL != m) {
m->m_flags &= ~M_EXT;
data block */
while (NULL != m) {
m->m_flags &= ~M_EXT;
- MFREE(m, n);
- m = n;
+ m = m_free(m);
}
#endif
}
}
#endif
}