tag | line | file | source code |
th | 258 | drivers/net/slhc.c | struct tcphdr *th, *oth; |
th | 274 | drivers/net/slhc.c | th = (struct tcphdr *)(((unsigned char *)ip) + ip->ihl*4); |
th | 275 | drivers/net/slhc.c | hlen = ip->ihl*4 + th->doff*4; |
th | 280 | drivers/net/slhc.c | if(th->syn || th->fin || th->rst || |
th | 281 | drivers/net/slhc.c | ! (th->ack)){ |
th | 303 | drivers/net/slhc.c | && th->source == cs->cs_tcp.source |
th | 304 | drivers/net/slhc.c | && th->dest == cs->cs_tcp.dest) |
th | 362 | drivers/net/slhc.c | || th->doff != cs->cs_tcp.doff |
th | 364 | drivers/net/slhc.c | || (th->doff > 5 && memcmp(th+1,cs->cs_tcpopt,((th->doff)-5)*4) != 0)){ |
th | 374 | drivers/net/slhc.c | if(th->urg){ |
th | 375 | drivers/net/slhc.c | deltaS = ntohs(th->urg_ptr); |
th | 378 | drivers/net/slhc.c | } else if(th->urg_ptr != oth->urg_ptr){ |
th | 385 | drivers/net/slhc.c | if((deltaS = ntohs(th->window) - ntohs(oth->window)) != 0){ |
th | 389 | drivers/net/slhc.c | if((deltaA = ntohl(th->ack_seq) - ntohl(oth->ack_seq)) != 0L){ |
th | 395 | drivers/net/slhc.c | if((deltaS = ntohl(th->seq) - ntohl(oth->seq)) != 0L){ |
th | 442 | drivers/net/slhc.c | if(th->psh) |
th | 447 | drivers/net/slhc.c | deltaA = ntohs(th->check); |
th | 449 | drivers/net/slhc.c | memcpy(&cs->cs_tcp,th,20); |
th | 482 | drivers/net/slhc.c | memcpy(&cs->cs_tcp,th,20); |
th | 485 | drivers/net/slhc.c | if (th->doff > 5) |
th | 486 | drivers/net/slhc.c | memcpy(cs->cs_tcpopt, th+1, ((th->doff) - 5) * 4); |
th | 16 | include/asm-alpha/ipsum.h | extern inline unsigned short tcp_check(struct tcphdr *th, int len, u32 saddr, u32 daddr) |
th | 20 | include/asm-sparc/ipsum.h | extern inline unsigned short tcp_check(struct tcphdr *th, int len, u32 saddr, u32 daddr) |
th | 52 | include/linux/skbuff.h | struct tcphdr *th; |
th | 137 | include/net/tcp.h | extern void tcp_send_check(struct tcphdr *th, unsigned long saddr, |
th | 581 | net/ipv4/ip_fw.c | struct tcphdr *th = (struct tcphdr *)&(((char *)iph)[iph->ihl*4]); |
th | 583 | net/ipv4/ip_fw.c | char *p, *data = (char *)&th[1]; |
th | 600 | net/ipv4/ip_fw.c | seq=ntohl(th->seq); |
th | 605 | net/ipv4/ip_fw.c | th->seq = htonl(seq + ftp->delta); |
th | 612 | net/ipv4/ip_fw.c | th->seq = htonl(seq + ftp->previous_delta); |
th | 852 | net/ipv4/ip_fw.c | struct tcphdr *th; |
th | 861 | net/ipv4/ip_fw.c | th = (struct tcphdr *)portptr; |
th | 866 | net/ipv4/ip_fw.c | if (ms->sawfin || th->fin) |
th | 873 | net/ipv4/ip_fw.c | tcp_send_check(th,iph->saddr,iph->daddr,size,skb->sk); |
th | 897 | net/ipv4/ip_fw.c | struct tcphdr *th = (struct tcphdr *)(skb_ptr->h.raw+(iph->ihl<<2)); |
th | 958 | net/ipv4/ip_fw.c | printk("demasq : delta=%d ; previous_delta=%d ; init_seq=%lX ; ack_seq=%lX ; after=%d\n",ms->delta,ms->previous_delta,ntohl(ms->init_seq),ntohl(th->ack_seq),after(ntohl(th->ack_seq),ntohl(ms->init_seq))); |
th | 960 | net/ipv4/ip_fw.c | ack_seq=ntohl(th->ack_seq); |
th | 965 | net/ipv4/ip_fw.c | th->ack_seq = htonl(ack_seq-ms->delta); |
th | 972 | net/ipv4/ip_fw.c | th->ack_seq = htonl(ack_seq-ms->previous_delta); |
th | 643 | net/ipv4/tcp.c | struct tcphdr *th; |
th | 667 | net/ipv4/tcp.c | th = (struct tcphdr *)(((char *)iph) + (iph->ihl << 2)); |
th | 720 | net/ipv4/tcp.c | th->ack_seq = ntohl(sk->acked_seq); |
th | 721 | net/ipv4/tcp.c | th->window = ntohs(tcp_select_window(sk)); |
th | 722 | net/ipv4/tcp.c | tcp_send_check(th, sk->saddr, sk->daddr, size, sk); |
th | 1041 | net/ipv4/tcp.c | struct tcphdr *th; |
th | 1048 | net/ipv4/tcp.c | th =(struct tcphdr *)header; |
th | 1049 | net/ipv4/tcp.c | sk = get_sock(&tcp_prot, th->source, daddr, th->dest, saddr); |
th | 1127 | net/ipv4/tcp.c | if (before(counted, skb->h.th->seq)) /* Found a hole so stops here */ |
th | 1129 | net/ipv4/tcp.c | sum = skb->len -(counted - skb->h.th->seq); /* Length - header but start from where we are up to (avoid overlaps) */ |
th | 1130 | net/ipv4/tcp.c | if (skb->h.th->syn) |
th | 1135 | net/ipv4/tcp.c | if (skb->h.th->syn) |
th | 1155 | net/ipv4/tcp.c | if (skb->h.th->urg) |
th | 1157 | net/ipv4/tcp.c | if (amount && skb->h.th->psh) break; |
th | 1303 | net/ipv4/tcp.c | unsigned short tcp_check(struct tcphdr *th, int len, |
th | 1311 | net/ipv4/tcp.c | void tcp_send_check(struct tcphdr *th, unsigned long saddr, |
th | 1314 | net/ipv4/tcp.c | th->check = 0; |
th | 1315 | net/ipv4/tcp.c | th->check = tcp_check(th, len, saddr, daddr, |
th | 1316 | net/ipv4/tcp.c | csum_partial((char *)th,len,0)); |
th | 1328 | net/ipv4/tcp.c | struct tcphdr * th = skb->h.th; |
th | 1334 | net/ipv4/tcp.c | size = skb->len - ((unsigned char *) th - skb->data); |
th | 1343 | net/ipv4/tcp.c | skb, skb->data, th, skb->len); |
th | 1356 | net/ipv4/tcp.c | if(!th->syn && !th->fin) |
th | 1369 | net/ipv4/tcp.c | skb->h.seq = ntohl(th->seq) + size - 4*th->doff; |
th | 1385 | net/ipv4/tcp.c | th->check = 0; |
th | 1410 | net/ipv4/tcp.c | th->ack_seq = ntohl(sk->acked_seq); |
th | 1411 | net/ipv4/tcp.c | th->window = ntohs(tcp_select_window(sk)); |
th | 1413 | net/ipv4/tcp.c | tcp_send_check(th, sk->saddr, sk->daddr, size, sk); |
th | 1509 | net/ipv4/tcp.c | struct tcphdr *th, unsigned long daddr) |
th | 1563 | net/ipv4/tcp.c | memcpy(t1, th, sizeof(*t1)); |
th | 1569 | net/ipv4/tcp.c | t1->dest = th->source; |
th | 1570 | net/ipv4/tcp.c | t1->source = th->dest; |
th | 1623 | net/ipv4/tcp.c | extern __inline int tcp_build_header(struct tcphdr *th, struct sock *sk, int push) |
th | 1626 | net/ipv4/tcp.c | memcpy(th,(void *) &(sk->dummy_th), sizeof(*th)); |
th | 1627 | net/ipv4/tcp.c | th->seq = htonl(sk->write_seq); |
th | 1628 | net/ipv4/tcp.c | th->psh =(push == 0) ? 1 : 0; |
th | 1629 | net/ipv4/tcp.c | th->doff = sizeof(*th)/4; |
th | 1630 | net/ipv4/tcp.c | th->ack = 1; |
th | 1631 | net/ipv4/tcp.c | th->fin = 0; |
th | 1635 | net/ipv4/tcp.c | th->ack_seq = htonl(sk->acked_seq); |
th | 1637 | net/ipv4/tcp.c | th->window = htons(sk->window); |
th | 1639 | net/ipv4/tcp.c | return(sizeof(*th)); |
th | 1770 | net/ipv4/tcp.c | hdrlen = ((unsigned long)skb->h.th - (unsigned long)skb->data) |
th | 1909 | net/ipv4/tcp.c | skb->h.th =(struct tcphdr *)skb_put(skb,sizeof(struct tcphdr)); |
th | 1910 | net/ipv4/tcp.c | tmp = tcp_build_header(skb->h.th, sk, len-copy); |
th | 1922 | net/ipv4/tcp.c | skb->h.th->urg = 1; |
th | 1923 | net/ipv4/tcp.c | skb->h.th->urg_ptr = ntohs(copy); |
th | 2279 | net/ipv4/tcp.c | if (before(*seq, skb->h.th->seq)) |
th | 2281 | net/ipv4/tcp.c | offset = *seq - skb->h.th->seq; |
th | 2282 | net/ipv4/tcp.c | if (skb->h.th->syn) |
th | 2286 | net/ipv4/tcp.c | if (skb->h.th->fin) |
th | 2394 | net/ipv4/tcp.c | memcpy_tofs(to,((unsigned char *)skb->h.th) + |
th | 2395 | net/ipv4/tcp.c | skb->h.th->doff*4 + offset, used); |
th | 2417 | net/ipv4/tcp.c | if (skb->h.th->fin) |
th | 2511 | net/ipv4/tcp.c | struct tcphdr *th =(struct tcphdr *)&sk->dummy_th; |
th | 2569 | net/ipv4/tcp.c | memcpy(t1, th, sizeof(*t1)); |
th | 2695 | net/ipv4/tcp.c | static void tcp_reset(unsigned long saddr, unsigned long daddr, struct tcphdr *th, |
th | 2707 | net/ipv4/tcp.c | if(th->rst) |
th | 2737 | net/ipv4/tcp.c | memcpy(t1, th, sizeof(*t1)); |
th | 2743 | net/ipv4/tcp.c | t1->dest = th->source; |
th | 2744 | net/ipv4/tcp.c | t1->source = th->dest; |
th | 2748 | net/ipv4/tcp.c | if(th->ack) |
th | 2751 | net/ipv4/tcp.c | t1->seq = th->ack_seq; |
th | 2757 | net/ipv4/tcp.c | if(!th->syn) |
th | 2758 | net/ipv4/tcp.c | t1->ack_seq=htonl(th->seq); |
th | 2760 | net/ipv4/tcp.c | t1->ack_seq=htonl(th->seq+1); |
th | 2786 | net/ipv4/tcp.c | static void tcp_options(struct sock *sk, struct tcphdr *th) |
th | 2789 | net/ipv4/tcp.c | int length=(th->doff*4)-sizeof(struct tcphdr); |
th | 2792 | net/ipv4/tcp.c | ptr = (unsigned char *)(th + 1); |
th | 2813 | net/ipv4/tcp.c | if(opsize==4 && th->syn) |
th | 2825 | net/ipv4/tcp.c | if (th->syn) |
th | 2879 | net/ipv4/tcp.c | struct tcphdr *th; |
th | 2884 | net/ipv4/tcp.c | th = skb->h.th; |
th | 2895 | net/ipv4/tcp.c | tcp_reset(daddr, saddr, th, sk->prot, opt, dev, sk->ip_tos,sk->ip_ttl); |
th | 2976 | net/ipv4/tcp.c | newsk->acked_seq = skb->h.th->seq+1; |
th | 2977 | net/ipv4/tcp.c | newsk->copied_seq = skb->h.th->seq+1; |
th | 2978 | net/ipv4/tcp.c | newsk->fin_seq = skb->h.th->seq; |
th | 2995 | net/ipv4/tcp.c | newsk->dummy_th.source = skb->h.th->dest; |
th | 2996 | net/ipv4/tcp.c | newsk->dummy_th.dest = skb->h.th->source; |
th | 3015 | net/ipv4/tcp.c | newsk->acked_seq = skb->h.th->seq + 1; |
th | 3016 | net/ipv4/tcp.c | newsk->copied_seq = skb->h.th->seq + 1; |
th | 3067 | net/ipv4/tcp.c | tcp_options(newsk,skb->h.th); |
th | 3114 | net/ipv4/tcp.c | memcpy(t1, skb->h.th, sizeof(*t1)); |
th | 3119 | net/ipv4/tcp.c | t1->dest = skb->h.th->source; |
th | 3132 | net/ipv4/tcp.c | t1->ack_seq = ntohl(skb->h.th->seq+1); |
th | 3280 | net/ipv4/tcp.c | struct tcphdr *th; |
th | 3291 | net/ipv4/tcp.c | th = (struct tcphdr *)(((char *)iph) +(iph->ihl << 2)); |
th | 3292 | net/ipv4/tcp.c | size = skb->len - (((unsigned char *) th) - skb->data); |
th | 3294 | net/ipv4/tcp.c | th->ack_seq = ntohl(sk->acked_seq); |
th | 3295 | net/ipv4/tcp.c | th->window = ntohs(tcp_select_window(sk)); |
th | 3297 | net/ipv4/tcp.c | tcp_send_check(th, sk->saddr, sk->daddr, size, sk); |
th | 3321 | net/ipv4/tcp.c | extern __inline__ int tcp_ack(struct sock *sk, struct tcphdr *th, unsigned long saddr, int len) |
th | 3340 | net/ipv4/tcp.c | ack = ntohl(th->ack_seq); |
th | 3342 | net/ipv4/tcp.c | if (ntohs(th->window) > sk->max_window) |
th | 3344 | net/ipv4/tcp.c | sk->max_window = ntohs(th->window); |
th | 3397 | net/ipv4/tcp.c | if (len != th->doff*4) |
th | 3404 | net/ipv4/tcp.c | if (after(sk->window_seq, ack+ntohs(th->window))) |
th | 3428 | net/ipv4/tcp.c | sk->window_seq = ack + ntohs(th->window); |
th | 3484 | net/ipv4/tcp.c | sk->window_seq = ack + ntohs(th->window); |
th | 3850 | net/ipv4/tcp.c | tcp_options(sk,th); |
th | 3851 | net/ipv4/tcp.c | sk->dummy_th.dest=th->source; |
th | 3924 | net/ipv4/tcp.c | static int tcp_fin(struct sk_buff *skb, struct sock *sk, struct tcphdr *th) |
th | 3926 | net/ipv4/tcp.c | sk->fin_seq = th->seq + skb->len + th->syn + th->fin; |
th | 3944 | net/ipv4/tcp.c | if (th->rst) |
th | 4015 | net/ipv4/tcp.c | struct tcphdr *th; |
th | 4019 | net/ipv4/tcp.c | th = skb->h.th; |
th | 4020 | net/ipv4/tcp.c | skb_pull(skb,th->doff*4); |
th | 4021 | net/ipv4/tcp.c | skb_trim(skb,len-(th->doff*4)); |
th | 4030 | net/ipv4/tcp.c | if (skb->len == 0 && !th->fin) |
th | 4036 | net/ipv4/tcp.c | if (!th->ack) |
th | 4037 | net/ipv4/tcp.c | tcp_send_ack(sk->sent_seq, sk->acked_seq,sk, th, saddr); |
th | 4060 | net/ipv4/tcp.c | new_seq= th->seq + skb->len + th->syn; /* Right edge of _data_ part of frame */ |
th | 4082 | net/ipv4/tcp.c | sk->acked_seq = new_seq + th->fin; |
th | 4083 | net/ipv4/tcp.c | tcp_reset(sk->saddr, sk->daddr, skb->h.th, |
th | 4122 | net/ipv4/tcp.c | printk("skb1->h.th->seq = %d: ", skb1->h.th->seq); |
th | 4123 | net/ipv4/tcp.c | printk("skb->h.th->seq = %d\n",skb->h.th->seq); |
th | 4136 | net/ipv4/tcp.c | if (th->seq==skb1->h.th->seq && skb->len>= skb1->len) |
th | 4150 | net/ipv4/tcp.c | if (after(th->seq+1, skb1->h.th->seq)) |
th | 4171 | net/ipv4/tcp.c | th->ack_seq = th->seq + skb->len; |
th | 4172 | net/ipv4/tcp.c | if (th->syn) |
th | 4173 | net/ipv4/tcp.c | th->ack_seq++; |
th | 4174 | net/ipv4/tcp.c | if (th->fin) |
th | 4175 | net/ipv4/tcp.c | th->ack_seq++; |
th | 4189 | net/ipv4/tcp.c | if ((!dup_dumped && (skb1 == NULL || skb1->acked)) || before(th->seq, sk->acked_seq+1)) |
th | 4191 | net/ipv4/tcp.c | if (before(th->seq, sk->acked_seq+1)) |
th | 4195 | net/ipv4/tcp.c | if (after(th->ack_seq, sk->acked_seq)) |
th | 4197 | net/ipv4/tcp.c | newwindow = sk->window-(th->ack_seq - sk->acked_seq); |
th | 4201 | net/ipv4/tcp.c | sk->acked_seq = th->ack_seq; |
th | 4210 | net/ipv4/tcp.c | if (skb->h.th->fin) |
th | 4212 | net/ipv4/tcp.c | tcp_fin(skb,sk,skb->h.th); |
th | 4219 | net/ipv4/tcp.c | if (before(skb2->h.th->seq, sk->acked_seq+1)) |
th | 4221 | net/ipv4/tcp.c | if (after(skb2->h.th->ack_seq, sk->acked_seq)) |
th | 4224 | net/ipv4/tcp.c | (skb2->h.th->ack_seq - sk->acked_seq); |
th | 4228 | net/ipv4/tcp.c | sk->acked_seq = skb2->h.th->ack_seq; |
th | 4235 | net/ipv4/tcp.c | if (skb2->h.th->fin) |
th | 4237 | net/ipv4/tcp.c | tcp_fin(skb,sk,skb->h.th); |
th | 4258 | net/ipv4/tcp.c | sk->bytes_rcv > sk->max_unacked || th->fin) { |
th | 4307 | net/ipv4/tcp.c | tcp_send_ack(sk->sent_seq, sk->acked_seq, sk, th, saddr); |
th | 4313 | net/ipv4/tcp.c | tcp_send_ack(sk->sent_seq, sk->acked_seq, sk, th, saddr); |
th | 4338 | net/ipv4/tcp.c | static void tcp_check_urg(struct sock * sk, struct tcphdr * th) |
th | 4340 | net/ipv4/tcp.c | u32 ptr = ntohs(th->urg_ptr); |
th | 4344 | net/ipv4/tcp.c | ptr += th->seq; |
th | 4370 | net/ipv4/tcp.c | extern __inline__ int tcp_urg(struct sock *sk, struct tcphdr *th, |
th | 4379 | net/ipv4/tcp.c | if (th->urg) |
th | 4380 | net/ipv4/tcp.c | tcp_check_urg(sk,th); |
th | 4393 | net/ipv4/tcp.c | ptr = sk->urg_seq - th->seq + th->doff*4; |
th | 4401 | net/ipv4/tcp.c | sk->urg_data = URG_VALID | *(ptr + (unsigned char *) th); |
th | 4632 | net/ipv4/tcp.c | extern __inline__ int tcp_sequence(struct sock *sk, struct tcphdr *th, short len, |
th | 4637 | net/ipv4/tcp.c | next_seq = len - 4*th->doff; |
th | 4638 | net/ipv4/tcp.c | if (th->fin) |
th | 4643 | net/ipv4/tcp.c | next_seq += th->seq; |
th | 4656 | net/ipv4/tcp.c | if (!before(th->seq, sk->acked_seq + sk->window + 1)) |
th | 4663 | net/ipv4/tcp.c | if (th->rst) |
th | 4675 | net/ipv4/tcp.c | tcp_reset(sk->saddr,sk->daddr,th,sk->prot,NULL,dev, sk->ip_tos,sk->ip_ttl); |
th | 4680 | net/ipv4/tcp.c | tcp_send_ack(sk->sent_seq, sk->acked_seq, sk, th, saddr); |
th | 4725 | net/ipv4/tcp.c | struct tcphdr *th; |
th | 4736 | net/ipv4/tcp.c | th = skb->h.th; |
th | 4742 | net/ipv4/tcp.c | if(saddr==th_cache_saddr && daddr==th_cache_daddr && th->dest==th_cache_dport && th->source==th_cache_sport) |
th | 4748 | net/ipv4/tcp.c | if(sk!=get_sock(&tcp_prot,th->dest, saddr, th->source, daddr)) |
th | 4753 | net/ipv4/tcp.c | sk = get_sock(&tcp_prot, th->dest, saddr, th->source, daddr); |
th | 4756 | net/ipv4/tcp.c | th_cache_dport=th->dest; |
th | 4757 | net/ipv4/tcp.c | th_cache_sport=th->source; |
th | 4783 | net/ipv4/tcp.c | (skb->ip_summed && tcp_check(th, len, saddr, daddr, skb->csum ))|| |
th | 4784 | net/ipv4/tcp.c | (!skb->ip_summed && tcp_check(th, len, saddr, daddr, csum_partial((char *)th, len, 0))) |
th | 4795 | net/ipv4/tcp.c | th->seq = ntohl(th->seq); |
th | 4803 | net/ipv4/tcp.c | tcp_reset(daddr, saddr, th, &tcp_prot, opt,dev,skb->ip_hdr->tos,255); |
th | 4834 | net/ipv4/tcp.c | tcp_reset(daddr, saddr, th, &tcp_prot, opt,dev,skb->ip_hdr->tos,255); |
th | 4879 | net/ipv4/tcp.c | if(th->ack) /* These use the socket TOS.. might want to be the received TOS */ |
th | 4880 | net/ipv4/tcp.c | tcp_reset(daddr,saddr,th,sk->prot,opt,dev,sk->ip_tos, sk->ip_ttl); |
th | 4889 | net/ipv4/tcp.c | if(th->rst || !th->syn || th->ack || ip_chk_addr(daddr)!=IS_MYADDR) |
th | 4916 | net/ipv4/tcp.c | if (sk->state == TCP_SYN_RECV && th->syn && th->seq+1 == sk->acked_seq) |
th | 4931 | net/ipv4/tcp.c | if(th->ack) |
th | 4934 | net/ipv4/tcp.c | if(!tcp_ack(sk,th,saddr,len)) |
th | 4939 | net/ipv4/tcp.c | tcp_reset(daddr, saddr, th, |
th | 4945 | net/ipv4/tcp.c | if(th->rst) |
th | 4947 | net/ipv4/tcp.c | if(!th->syn) |
th | 4960 | net/ipv4/tcp.c | sk->acked_seq=th->seq+1; |
th | 4961 | net/ipv4/tcp.c | sk->fin_seq=th->seq; |
th | 4962 | net/ipv4/tcp.c | tcp_send_ack(sk->sent_seq,sk->acked_seq,sk,th,sk->daddr); |
th | 4964 | net/ipv4/tcp.c | tcp_options(sk,th); |
th | 4965 | net/ipv4/tcp.c | sk->dummy_th.dest=th->source; |
th | 4981 | net/ipv4/tcp.c | if(th->syn && !th->rst) |
th | 4986 | net/ipv4/tcp.c | sk->dummy_th.source==th->source && |
th | 4987 | net/ipv4/tcp.c | sk->dummy_th.dest==th->dest) |
th | 5018 | net/ipv4/tcp.c | if (sk->state == TCP_TIME_WAIT && th->syn && sk->dead && |
th | 5019 | net/ipv4/tcp.c | after(th->seq, sk->acked_seq) && !th->rst) |
th | 5031 | net/ipv4/tcp.c | sk=get_sock(&tcp_prot, th->dest, saddr, th->source, daddr); |
th | 5053 | net/ipv4/tcp.c | if(!tcp_sequence(sk,th,len,opt,saddr,dev)) |
th | 5060 | net/ipv4/tcp.c | if(th->rst) |
th | 5067 | net/ipv4/tcp.c | if(th->syn && !syn_ok) |
th | 5069 | net/ipv4/tcp.c | tcp_reset(daddr,saddr,th, &tcp_prot, opt, dev, skb->ip_hdr->tos, 255); |
th | 5078 | net/ipv4/tcp.c | if(th->ack && !tcp_ack(sk,th,saddr,len)) |
th | 5086 | net/ipv4/tcp.c | tcp_reset(daddr, saddr, th,sk->prot, opt, dev,sk->ip_tos,sk->ip_ttl); |
th | 5099 | net/ipv4/tcp.c | if(tcp_urg(sk, th, saddr, len)) |
th | 5166 | net/ipv4/tcp.c | struct tcphdr *th; |
th | 5185 | net/ipv4/tcp.c | th = (struct tcphdr *)(((char *)iph) +(iph->ihl << 2)); |
th | 5191 | net/ipv4/tcp.c | buff = sk->prot->wmalloc(sk, win_size + th->doff * 4 + |
th | 5227 | net/ipv4/tcp.c | nth = (struct tcphdr *) skb_put(buff,th->doff*4); |
th | 5229 | net/ipv4/tcp.c | memcpy(nth, th, th->doff * 4); |
th | 5245 | net/ipv4/tcp.c | (iph->ihl << 2) + th->doff * 4; |
th | 5264 | net/ipv4/tcp.c | th->check = 0; |
th | 5271 | net/ipv4/tcp.c | th->seq = htonl(sk->sent_seq); |
th | 5272 | net/ipv4/tcp.c | if (th->urg) |
th | 5276 | net/ipv4/tcp.c | urg_ptr = ntohs(th->urg_ptr); |
th | 5278 | net/ipv4/tcp.c | th->urg = 0; |
th | 5282 | net/ipv4/tcp.c | th->urg_ptr = htons(urg_ptr); |
th | 5287 | net/ipv4/tcp.c | if(th->urg && ntohs(th->urg_ptr) < win_size) |