patch-1.3.63 linux/net/ipv4/af_inet.c
Next file: linux/net/ipv4/tcp.c
Previous file: linux/net/core/sock.c
Back to the patch index
Back to the overall index
- Lines: 35
- Date:
Wed Feb 14 09:26:25 1996
- Orig file:
v1.3.62/linux/net/ipv4/af_inet.c
- Orig date:
Sun Feb 11 15:32:47 1996
diff -u --recursive --new-file v1.3.62/linux/net/ipv4/af_inet.c linux/net/ipv4/af_inet.c
@@ -587,8 +587,9 @@
if (sk == NULL)
return(-ENOBUFS);
memset(sk,0,sizeof(*sk)); /* Efficient way to set most fields to zero */
-/* sk->num = 0;
- * sk->reuse = 0;*/
+ /*
+ * Note for tcp that also wiped the dummy_th block for us.
+ */
switch(sock->type)
{
case SOCK_STREAM:
@@ -653,8 +654,6 @@
sk->socket = sock;
#ifdef CONFIG_TCP_NAGLE_OFF
sk->nonagle = 1;
-#else
-/* sk->nonagle = 0;*/
#endif
sk->type = sock->type;
sk->protocol = protocol;
@@ -693,6 +692,13 @@
*sk->ip_mc_name=0;
sk->ip_mc_list=NULL;
#endif
+ /*
+ * Speed up by setting some standard state for the dummy_th
+ * if TCP uses it (maybe move to tcp_init later)
+ */
+
+ sk->dummy_th.ack=1;
+ sk->dummy_th.doff=sizeof(struct tcphdr)>>2;
sk->state_change = def_callback1;
sk->data_ready = def_callback2;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this