tag | line | file | source code |
t1 | 571 | net/tcp/tcp.c | struct tcp_header *t1; |
t1 | 597 | net/tcp/tcp.c | t1 = (struct tcp_header *)(buff + 1); |
t1 | 607 | net/tcp/tcp.c | t1 = (struct tcp_header *)((char *)t1 +tmp); |
t1 | 609 | net/tcp/tcp.c | memcpy (t1, th, sizeof (*t1)); /* this should probably be removed. */ |
t1 | 612 | net/tcp/tcp.c | t1->dest = th->source; |
t1 | 613 | net/tcp/tcp.c | t1->source = th->dest; |
t1 | 614 | net/tcp/tcp.c | t1->seq = net32(sequence); |
t1 | 615 | net/tcp/tcp.c | t1->ack = 1; |
t1 | 617 | net/tcp/tcp.c | t1->window = net16(sk->window); |
t1 | 618 | net/tcp/tcp.c | t1->res1=0; |
t1 | 619 | net/tcp/tcp.c | t1->res2=0; |
t1 | 620 | net/tcp/tcp.c | t1->rst = 0; |
t1 | 621 | net/tcp/tcp.c | t1->urg = 0; |
t1 | 622 | net/tcp/tcp.c | t1->syn = 0; |
t1 | 623 | net/tcp/tcp.c | t1->psh = 0; |
t1 | 624 | net/tcp/tcp.c | t1->fin = 0; |
t1 | 638 | net/tcp/tcp.c | t1->ack_seq = net32(ack); |
t1 | 639 | net/tcp/tcp.c | t1->doff = sizeof (*t1)/4; |
t1 | 640 | net/tcp/tcp.c | tcp_send_check (t1, sk->saddr, daddr, sizeof (*t1), sk); |
t1 | 985 | net/tcp/tcp.c | struct tcp_header *t1; |
t1 | 1023 | net/tcp/tcp.c | t1 = (struct tcp_header *)((char *)(buff+1) +tmp); |
t1 | 1025 | net/tcp/tcp.c | memcpy (t1,(void *) &sk->dummy_th, sizeof (*t1)); |
t1 | 1026 | net/tcp/tcp.c | t1->seq = net32(sk->send_seq); |
t1 | 1027 | net/tcp/tcp.c | t1->ack = 1; |
t1 | 1028 | net/tcp/tcp.c | t1->res1=0; |
t1 | 1029 | net/tcp/tcp.c | t1->res2=0; |
t1 | 1030 | net/tcp/tcp.c | t1->rst = 0; |
t1 | 1031 | net/tcp/tcp.c | t1->urg = 0; |
t1 | 1032 | net/tcp/tcp.c | t1->syn = 0; |
t1 | 1033 | net/tcp/tcp.c | t1->psh = 0; |
t1 | 1037 | net/tcp/tcp.c | t1->window = net16(sk->window); |
t1 | 1038 | net/tcp/tcp.c | t1->ack_seq = net32(sk->acked_seq); |
t1 | 1039 | net/tcp/tcp.c | t1->doff = sizeof (*t1)/4; |
t1 | 1040 | net/tcp/tcp.c | tcp_send_check (t1, sk->saddr, sk->daddr, sizeof (*t1), sk); |
t1 | 1429 | net/tcp/tcp.c | struct tcp_header *t1,*th; |
t1 | 1466 | net/tcp/tcp.c | buff->len = sizeof (*t1); |
t1 | 1468 | net/tcp/tcp.c | t1=(struct tcp_header *)(buff + 1); |
t1 | 1481 | net/tcp/tcp.c | t1 = (struct tcp_header *)((char *)t1 +tmp); |
t1 | 1485 | net/tcp/tcp.c | memcpy (t1, th, sizeof (*t1)); |
t1 | 1487 | net/tcp/tcp.c | t1->seq = net32(sk->send_seq); |
t1 | 1491 | net/tcp/tcp.c | t1->ack = 1; |
t1 | 1493 | net/tcp/tcp.c | t1->ack_seq = net32(sk->acked_seq); |
t1 | 1494 | net/tcp/tcp.c | t1->window = net16(sk->prot->rspace(sk)); |
t1 | 1495 | net/tcp/tcp.c | t1->fin = 1; |
t1 | 1496 | net/tcp/tcp.c | t1->rst = 0; |
t1 | 1498 | net/tcp/tcp.c | t1->doff = sizeof (*t1)/4; |
t1 | 1499 | net/tcp/tcp.c | tcp_send_check (t1, sk->saddr, sk->daddr, sizeof (*t1), sk); |
t1 | 1558 | net/tcp/tcp.c | struct tcp_header *t1; |
t1 | 1567 | net/tcp/tcp.c | buff->len = sizeof (*t1); |
t1 | 1571 | net/tcp/tcp.c | t1=(struct tcp_header *)(buff + 1); |
t1 | 1580 | net/tcp/tcp.c | t1 = (struct tcp_header *)((char *)t1 +tmp); |
t1 | 1582 | net/tcp/tcp.c | memcpy (t1, th, sizeof (*t1)); |
t1 | 1584 | net/tcp/tcp.c | t1->dest = th->source; |
t1 | 1585 | net/tcp/tcp.c | t1->source = th->dest; |
t1 | 1586 | net/tcp/tcp.c | t1->seq = th->ack_seq; /* add one so it will be in |
t1 | 1588 | net/tcp/tcp.c | t1->rst = 1; |
t1 | 1589 | net/tcp/tcp.c | t1->ack = 0; |
t1 | 1590 | net/tcp/tcp.c | t1->syn = 0; |
t1 | 1591 | net/tcp/tcp.c | t1->urg = 0; |
t1 | 1592 | net/tcp/tcp.c | t1->fin = 0; |
t1 | 1593 | net/tcp/tcp.c | t1->psh = 0; |
t1 | 1594 | net/tcp/tcp.c | t1->doff = sizeof (*t1)/4; |
t1 | 1595 | net/tcp/tcp.c | tcp_send_check (t1, saddr, daddr, sizeof (*t1), NULL); |
t1 | 1612 | net/tcp/tcp.c | struct tcp_header *t1; |
t1 | 1747 | net/tcp/tcp.c | t1=(struct tcp_header *)(buff + 1); |
t1 | 1766 | net/tcp/tcp.c | t1 = (struct tcp_header *)((char *)t1 +tmp); |
t1 | 1768 | net/tcp/tcp.c | memcpy (t1, skb->h.th, sizeof (*t1)); |
t1 | 1771 | net/tcp/tcp.c | t1->dest = skb->h.th->source; |
t1 | 1772 | net/tcp/tcp.c | t1->source = newsk->dummy_th.source; |
t1 | 1773 | net/tcp/tcp.c | t1->seq = net32(newsk->send_seq++); |
t1 | 1774 | net/tcp/tcp.c | t1->ack = 1; |
t1 | 1776 | net/tcp/tcp.c | t1->window = net16(newsk->window); |
t1 | 1777 | net/tcp/tcp.c | t1->res1=0; |
t1 | 1778 | net/tcp/tcp.c | t1->res2=0; |
t1 | 1779 | net/tcp/tcp.c | t1->rst = 0; |
t1 | 1780 | net/tcp/tcp.c | t1->urg = 0; |
t1 | 1781 | net/tcp/tcp.c | t1->psh = 0; |
t1 | 1782 | net/tcp/tcp.c | t1->syn = 1; |
t1 | 1783 | net/tcp/tcp.c | t1->ack_seq = net32(skb->h.th->seq+1); |
t1 | 1784 | net/tcp/tcp.c | t1->doff = sizeof (*t1)/4+1; |
t1 | 1786 | net/tcp/tcp.c | ptr = (unsigned char *)(t1+1); |
t1 | 1792 | net/tcp/tcp.c | tcp_send_check (t1, daddr, saddr, sizeof (*t1)+4, newsk); |
t1 | 1827 | net/tcp/tcp.c | struct tcp_header *t1,*th; |
t1 | 1920 | net/tcp/tcp.c | buff->len = sizeof (*t1); |
t1 | 1921 | net/tcp/tcp.c | t1=(struct tcp_header *)(buff + 1); |
t1 | 1934 | net/tcp/tcp.c | t1 = (struct tcp_header *)((char *)t1 +tmp); |
t1 | 1937 | net/tcp/tcp.c | memcpy (t1, th, sizeof (*t1)); |
t1 | 1938 | net/tcp/tcp.c | t1->seq = net32(sk->send_seq); |
t1 | 1941 | net/tcp/tcp.c | t1->ack = 1; |
t1 | 1945 | net/tcp/tcp.c | t1->ack_seq = net32(sk->acked_seq); |
t1 | 1946 | net/tcp/tcp.c | t1->window = net16(sk->prot->rspace(sk)); |
t1 | 1947 | net/tcp/tcp.c | t1->fin = 1; |
t1 | 1948 | net/tcp/tcp.c | t1->rst = need_reset; |
t1 | 1949 | net/tcp/tcp.c | t1->doff = sizeof (*t1)/4; |
t1 | 1950 | net/tcp/tcp.c | tcp_send_check (t1, sk->saddr, sk->daddr, sizeof (*t1), sk); |
t1 | 2589 | net/tcp/tcp.c | t1 = (struct tcp_header *)(buff + 1); |
t1 | 2600 | net/tcp/tcp.c | t1 = (struct tcp_header *)((char *)t1 +tmp); |
t1 | 2602 | net/tcp/tcp.c | memcpy (t1, th, sizeof (*t1)); |
t1 | 2605 | net/tcp/tcp.c | t1->dest = th->source; |
t1 | 2606 | net/tcp/tcp.c | t1->source = th->dest; |
t1 | 2609 | net/tcp/tcp.c | t1->seq = net32(sk->send_seq); |
t1 | 2615 | net/tcp/tcp.c | t1->window = net16(sk->prot->rspace(sk)); |
t1 | 2617 | net/tcp/tcp.c | t1->res1=0; |
t1 | 2618 | net/tcp/tcp.c | t1->res2=0; |
t1 | 2619 | net/tcp/tcp.c | t1->rst = 0; |
t1 | 2620 | net/tcp/tcp.c | t1->urg = 0; |
t1 | 2621 | net/tcp/tcp.c | t1->syn = 0; |
t1 | 2622 | net/tcp/tcp.c | t1->psh = 0; |
t1 | 2623 | net/tcp/tcp.c | t1->ack = 1; |
t1 | 2624 | net/tcp/tcp.c | t1->fin = 0; |
t1 | 2625 | net/tcp/tcp.c | t1->ack_seq = net32(sk->acked_seq); |
t1 | 2627 | net/tcp/tcp.c | t1->doff = sizeof (*t1)/4; |
t1 | 2628 | net/tcp/tcp.c | tcp_send_check (t1, sk->saddr, sk->daddr, sizeof (*t1), sk); |
t1 | 2712 | net/tcp/tcp.c | struct tcp_header *t1; |
t1 | 2739 | net/tcp/tcp.c | t1=(struct tcp_header *)(buff + 1); |
t1 | 2752 | net/tcp/tcp.c | t1 = (struct tcp_header *)((char *)t1 +tmp); |
t1 | 2754 | net/tcp/tcp.c | memcpy (t1, (void *)&(sk->dummy_th), sizeof (*t1)); |
t1 | 2755 | net/tcp/tcp.c | t1->seq = net32(sk->send_seq++); |
t1 | 2757 | net/tcp/tcp.c | t1->ack = 0; |
t1 | 2758 | net/tcp/tcp.c | t1->window = 2; |
t1 | 2759 | net/tcp/tcp.c | t1->res1=0; |
t1 | 2760 | net/tcp/tcp.c | t1->res2=0; |
t1 | 2761 | net/tcp/tcp.c | t1->rst = 0; |
t1 | 2762 | net/tcp/tcp.c | t1->urg = 0; |
t1 | 2763 | net/tcp/tcp.c | t1->psh = 0; |
t1 | 2764 | net/tcp/tcp.c | t1->syn = 1; |
t1 | 2765 | net/tcp/tcp.c | t1->urg_ptr = 0; |
t1 | 2766 | net/tcp/tcp.c | t1->doff =6; |
t1 | 2768 | net/tcp/tcp.c | ptr=(unsigned char *)(t1+1); |
t1 | 2774 | net/tcp/tcp.c | tcp_send_check (t1, sk->saddr, sk->daddr, |
t1 | 3306 | net/tcp/tcp.c | struct tcp_header *t1; |
t1 | 3322 | net/tcp/tcp.c | t1=(struct tcp_header *)(buff + 1); |
t1 | 3334 | net/tcp/tcp.c | t1 = (struct tcp_header *)((char *)t1 +tmp); |
t1 | 3336 | net/tcp/tcp.c | memcpy (t1,(void *) &sk->dummy_th, sizeof (*t1)); |
t1 | 3340 | net/tcp/tcp.c | t1->seq = net32(sk->send_seq-1); |
t1 | 3341 | net/tcp/tcp.c | t1->ack = 1; |
t1 | 3342 | net/tcp/tcp.c | t1->res1= 0; |
t1 | 3343 | net/tcp/tcp.c | t1->res2= 0; |
t1 | 3344 | net/tcp/tcp.c | t1->rst = 0; |
t1 | 3345 | net/tcp/tcp.c | t1->urg = 0; |
t1 | 3346 | net/tcp/tcp.c | t1->psh = 0; |
t1 | 3347 | net/tcp/tcp.c | t1->fin = 0; |
t1 | 3348 | net/tcp/tcp.c | t1->syn = 0; |
t1 | 3349 | net/tcp/tcp.c | t1->ack_seq = net32(sk->acked_seq); |
t1 | 3350 | net/tcp/tcp.c | t1->window = net16(sk->prot->rspace(sk)); |
t1 | 3351 | net/tcp/tcp.c | t1->doff = sizeof (*t1)/4; |
t1 | 3352 | net/tcp/tcp.c | tcp_send_check (t1, sk->saddr, sk->daddr, sizeof (*t1), sk); |