亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? uip.lst

?? 58enc28j06protuesuip09.rar
?? LST
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
 528   6      
 529   6                  /* We also send a reset packet to the remote host. */
 530   6                  BUF->flags = TCP_RST | TCP_ACK;
 531   6                  goto tcp_send_nodata;
 532   6                }
 533   5      
 534   5                /* Exponential backoff. */
 535   5                uip_connr->timer = UIP_RTO << (uip_connr->nrtx > 4?
 536   5                                               4:
 537   5                                               uip_connr->nrtx);
 538   5                ++(uip_connr->nrtx);
 539   5                
 540   5                /* Ok, so we need to retransmit. We do this differently
 541   5                   depending on which state we are in. In ESTABLISHED, we
 542   5                   call upon the application so that it may prepare the
 543   5                   data for the retransmit. In SYN_RCVD, we resend the
 544   5                   SYNACK that we sent earlier and in LAST_ACK we have to
 545   5                   retransmit our FINACK. */
 546   5                UIP_STAT(++uip_stat.tcp.rexmit);
 547   5                switch(uip_connr->tcpstateflags & TS_MASK) {
 548   6                case SYN_RCVD:
 549   6                  /* In the SYN_RCVD state, we should retransmit our
C51 COMPILER V8.15   UIP                                                                   08/11/2009 15:07:52 PAGE 10  

 550   6                     SYNACK. */
 551   6                  goto tcp_send_synack;
 552   6                  
 553   6      #if UIP_ACTIVE_OPEN
                        case SYN_SENT:
                          /* In the SYN_SENT state, we retransmit out SYN. */
                          BUF->flags = 0;
                          goto tcp_send_syn;
              #endif /* UIP_ACTIVE_OPEN */
 559   6                  
 560   6                case ESTABLISHED:
 561   6                  /* In the ESTABLISHED state, we call upon the application
 562   6                     to do the actual retransmit after which we jump into
 563   6                     the code for sending out the packet (the apprexmit
 564   6                     label). */
 565   6                  uip_len = 0;
 566   6                  uip_slen = 0;
 567   6                  uip_flags = UIP_REXMIT;
 568   6                  UIP_APPCALL();
 569   6                  goto apprexmit;
 570   6                  
 571   6                case FIN_WAIT_1:
 572   6                case CLOSING:
 573   6                case LAST_ACK:
 574   6                  /* In all these states we should retransmit a FINACK. */
 575   6                  goto tcp_send_finack;
 576   6                  
 577   6                }
 578   5              }
 579   4            } else if((uip_connr->tcpstateflags & TS_MASK) == ESTABLISHED) {
 580   4              /* If there was no need for a retransmission, we poll the
 581   4                 application for new data. */
 582   4              uip_len = 0;
 583   4              uip_slen = 0;
 584   4              uip_flags = UIP_POLL;
 585   4              UIP_APPCALL();
 586   4              goto appsend;
 587   4            }
 588   3          }
 589   2          goto drop;
 590   2        }
 591   1      #if UIP_UDP 
                if(flag == UIP_UDP_TIMER) {
                  if(uip_udp_conn->lport != 0) {
                    uip_appdata = &uip_buf[UIP_LLH_LEN + 28];
                    uip_len = uip_slen = 0;
                    uip_flags = UIP_POLL;
                    UIP_UDP_APPCALL();
                    goto udp_send;
                  } else {
                    goto drop;
                  }
                }
              #endif
 604   1      
 605   1        /* This is where the input processing starts. */
 606   1        UIP_STAT(++uip_stat.ip.recv);
 607   1      
 608   1      
 609   1        /* Start of IPv4 input header processing code. */
 610   1        
 611   1        /* Check validity of the IP header. */  
C51 COMPILER V8.15   UIP                                                                   08/11/2009 15:07:52 PAGE 11  

 612   1        if(BUF->vhl != 0x45)  { /* IP version and header length. */
 613   2          UIP_STAT(++uip_stat.ip.drop);
 614   2          UIP_STAT(++uip_stat.ip.vhlerr);
 615   2          Printf_String("\r\n[MSG:] ip: invalid version or header length.");
 616   2          goto drop;
 617   2        }
 618   1        
 619   1        /* Check the size of the packet. If the size reported to us in
 620   1           uip_len doesn't match the size reported in the IP header, there
 621   1           has been a transmission error and we drop the packet. */
 622   1        
 623   1        if(BUF->len[0] != (uip_len >> 8)) { /* IP length, high byte. */
 624   2          uip_len = (uip_len & 0xff) | (BUF->len[0] << 8);
 625   2        }
 626   1        if(BUF->len[1] != (uip_len & 0xff)) { /* IP length, low byte. */
 627   2          uip_len = (uip_len & 0xff00) | BUF->len[1];
 628   2        }
 629   1      
 630   1        /* Check the fragment flag. */
 631   1        if((BUF->ipoffset[0] & 0x3f) != 0 ||
 632   1           BUF->ipoffset[1] != 0) { 
 633   2      #if UIP_REASSEMBLY
                  uip_len = uip_reass();
                  if(uip_len == 0) {
                    goto drop;
                  }
              #else
 639   2          UIP_STAT(++uip_stat.ip.drop);
 640   2          UIP_STAT(++uip_stat.ip.fragerr);
 641   2          Printf_String("\r\n[MSG:] ip: fragment dropped.");    
 642   2          goto drop;
 643   2      #endif /* UIP_REASSEMBLY */
 644   2        }
 645   1      
 646   1        /* If we are configured to use ping IP address configuration and
 647   1           hasn't been assigned an IP address yet, we accept all ICMP
 648   1           packets. */
 649   1      #if UIP_PINGADDRCONF
                if((uip_hostaddr[0] | uip_hostaddr[1]) == 0) {
                  if(BUF->proto == UIP_PROTO_ICMP) {
                    Printf_String("\r\n[MSG:] ip: possible ping config packet received.");
                    goto icmp_input;
                  } else {
                    Printf_String("\r\n[MSG:] ip: packet dropped since no address assigned.");
                    goto drop;
                  }
                }
              #endif /* UIP_PINGADDRCONF */
 660   1        
 661   1        /* Check if the packet is destined for our IP address. */  
 662   1        if(BUF->destipaddr[0] != uip_hostaddr[0]) {
 663   2          UIP_STAT(++uip_stat.ip.drop);
 664   2         // Printf_String("\r\n ->ip: packet not for us.");        
 665   2          goto drop;
 666   2        }
 667   1        if(BUF->destipaddr[1] != uip_hostaddr[1]) {
 668   2          UIP_STAT(++uip_stat.ip.drop);
 669   2         // Printf_String("\r\n ->ip: packet not for us.");        
 670   2          goto drop;
 671   2        }
 672   1      
 673   1        if(uip_ipchksum() != 0xffff) { /* Compute and check the IP header
C51 COMPILER V8.15   UIP                                                                   08/11/2009 15:07:52 PAGE 12  

 674   2                                          checksum. */
 675   2          UIP_STAT(++uip_stat.ip.drop);
 676   2          UIP_STAT(++uip_stat.ip.chkerr);
 677   2          Printf_String("\r\n[MSG:] ip: bad checksum.");    
 678   2          goto drop;
 679   2        }
 680   1      
 681   1        if(BUF->proto == UIP_PROTO_TCP)  /* Check for TCP packet. If so, jump
 682   1                                           to the tcp_input label. */
 683   1          goto tcp_input;
 684   1      
 685   1      #if UIP_UDP
                if(BUF->proto == UIP_PROTO_UDP)
                  goto udp_input;
              #endif /* UIP_UDP */
 689   1      
 690   1        if(BUF->proto != UIP_PROTO_ICMP) { /* We only allow ICMP packets from
 691   2                                              here. */
 692   2          UIP_STAT(++uip_stat.ip.drop);
 693   2          UIP_STAT(++uip_stat.ip.protoerr);
 694   2          Printf_String("\r\n[MSG:] ip: neither tcp nor icmp.");        
 695   2          goto drop;
 696   2        }
 697   1        
 698   1       icmp_input:
 699   1        UIP_STAT(++uip_stat.icmp.recv);
 700   1        
 701   1        /* ICMP echo (i.e., ping) processing. This is simple, we only change
 702   1           the ICMP type from ECHO to ECHO_REPLY and adjust the ICMP
 703   1           checksum before we return the packet. */
 704   1        if(ICMPBUF->type != ICMP_ECHO) {
 705   2          UIP_STAT(++uip_stat.icmp.drop);
 706   2          UIP_STAT(++uip_stat.icmp.typeerr);
 707   2          Printf_String("\r\n[MSG:] icmp: not icmp echo.");
 708   2          goto drop;
 709   2        }
 710   1      
 711   1        /* If we are configured to use ping IP address assignment, we use
 712   1           the destination IP address of this ping packet and assign it to
 713   1           ourself. */
 714   1      #if UIP_PINGADDRCONF
                if((uip_hostaddr[0] | uip_hostaddr[1]) == 0) {
                  uip_hostaddr[0] = BUF->destipaddr[0];
                  uip_hostaddr[1] = BUF->destipaddr[1];
                }
              #endif /* UIP_PINGADDRCONF */  
 720   1        
 721   1        ICMPBUF->type = ICMP_ECHO_REPLY;
 722   1        
 723   1        if(ICMPBUF->icmpchksum >= HTONS(0xffff - (ICMP_ECHO << 8))) {
 724   2          ICMPBUF->icmpchksum += HTONS(ICMP_ECHO << 8) + 1;
 725   2        } else {
 726   2          ICMPBUF->icmpchksum += HTONS(ICMP_ECHO << 8);
 727   2        }
 728   1        
 729   1        /* Swap IP addresses. */
 730   1        tmp16 = BUF->destipaddr[0];
 731   1        BUF->destipaddr[0] = BUF->srcipaddr[0];
 732   1        BUF->srcipaddr[0] = tmp16;
 733   1        tmp16 = BUF->destipaddr[1];
 734   1        BUF->destipaddr[1] = BUF->srcipaddr[1];
 735   1        BUF->srcipaddr[1] = tmp16;
C51 COMPILER V8.15   UIP                                                                   08/11/2009 15:07:52 PAGE 13  

 736   1      
 737   1        UIP_STAT(++uip_stat.icmp.sent);
 738   1      
 739   1      
 740   1         /*@test by jerkoh  ping debug@*/
 741   1         gjk_iptemp=BUF->srcipaddr[0]>>8;
 742   1      
 743   1         Printf_String("\r\n[MSG:] Reply from ");
 744   1      
 745   1         Printf_Str(gjk_iptemp);
 746   1         Printf_String(".");
 747   1         Printf_Str(BUF->srcipaddr[0]);
 748   1         Printf_String(".");
 749   1         gjk_iptemp=BUF->srcipaddr[1]>>8;
 750   1      
 751   1         Printf_Str(gjk_iptemp);
 752   1         Printf_String(".");
 753   1         Printf_Str(BUF->srcipaddr[1]);
 754   1      
 755   1         Printf_String(": byte=32 time<37ms TTL=64 ");
 756   1      
 757   1         /*@test by jerkoh  ping debug@*/
 758   1      
 759   1      
 760   1      
 761   1        goto send;
 762   1      
 763   1        /* End of IPv4 input header processing code. */
 764   1        
 765   1      
 766   1      #if UIP_UDP
                /* UDP input processing. */
               udp_input:
                /* UDP processing is really just a hack. We don't do anything to the
                   UDP/IP headers, but let the UDP application do all the hard
                   work. If the application sets uip_slen, it has a packet to
                   send. */
              #if UIP_UDP_CHECKSUMS
                if(uip_udpchksum() != 0xffff) { 
                  UIP_STAT(++uip_stat.udp.drop);
                  UIP_STAT(++uip_stat.udp.chkerr);
                  Printf_String("\r\n[MSG:] udp: bad checksum.");    
                  goto drop;
                }  
              #endif /* UIP_UDP_CHECKSUMS */
              
                /* Demultiplex this UDP packet between the UDP "connections". */
                for(uip_udp_conn = &uip_udp_conns[0];
                    uip_udp_conn < &uip_udp_conns[UIP_UDP_CONNS];
                    ++uip_udp_conn) {
                  if(uip_udp_conn->lport != 0 &&
                     UDPBUF->destport == uip_udp_conn->lport &&
                     (uip_udp_conn->rport == 0 ||
                      UDPBUF->srcport == uip_udp_conn->rport) &&
                     BUF->srcipaddr[0] == uip_udp_conn->ripaddr[0] &&
                     BUF->srcipaddr[1] == uip_udp_conn->ripaddr[1]) {
                    goto udp_found; 
                  }
                }
                goto drop;
                

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
懂色av一区二区夜夜嗨| 色成人在线视频| 亚洲精品一区二区三区香蕉 | 日本一道高清亚洲日美韩| 日韩一区二区精品葵司在线 | 欧美日韩精品一区二区三区蜜桃| 一区二区在线观看免费| 欧美激情艳妇裸体舞| 亚洲午夜久久久久久久久久久| 欧美日韩性生活| 亚洲va中文字幕| 日韩片之四级片| 美国av一区二区| 国产精品福利一区| 欧美日精品一区视频| 免费看欧美女人艹b| 久久这里只有精品首页| 不卡的电视剧免费网站有什么| 亚洲激情第一区| 欧美日韩精品三区| 日本韩国一区二区三区视频| 亚洲成a天堂v人片| 久久精品99国产精品日本| 91精品中文字幕一区二区三区| 欧美高清视频一二三区| 日韩午夜在线观看视频| 亚洲国产你懂的| 国产一区二区三区视频在线播放 | 中文av字幕一区| 成人激情小说乱人伦| 91精品国产日韩91久久久久久| 亚洲女人****多毛耸耸8| 美女诱惑一区二区| 色视频一区二区| 国产精品欧美综合在线| 美日韩一级片在线观看| 亚洲日本青草视频在线怡红院| 麻豆国产精品视频| 亚洲色图一区二区| 欧美大片一区二区三区| 91色乱码一区二区三区| 国产日韩精品一区二区浪潮av | 欧美午夜视频网站| 黑人巨大精品欧美一区| 一区二区三国产精华液| 欧美美女一区二区在线观看| 欧美日韩国产综合一区二区三区| 日韩黄色小视频| 亚洲欧美国产高清| 一区二区三区四区激情| 日本一二三不卡| 日韩一区二区三区在线| 波多野结衣一区二区三区 | 久久久国际精品| 欧美精品色综合| 一区二区三区在线观看欧美 | 亚洲一级片在线观看| 久久精品视频一区二区| 91麻豆精品国产综合久久久久久 | 免费成人av资源网| 亚洲精品成人在线| 国产日韩成人精品| 欧美亚洲自拍偷拍| 欧美sm美女调教| 欧美精品亚洲一区二区在线播放| 欧美视频一区二区三区在线观看| 国产美女精品在线| 老司机精品视频在线| 26uuu成人网一区二区三区| 9191精品国产综合久久久久久 | 黄色成人免费在线| 亚洲一区二区av电影| 午夜影院久久久| 亚洲精品乱码久久久久久日本蜜臀| 亚洲精品一区二区在线观看| 精品久久久三级丝袜| 欧美三级视频在线| 欧美视频在线一区| 欧美日韩国产成人在线91| 欧美在线你懂得| 国产麻豆精品视频| 国产福利一区二区三区| 国产精品一区二区不卡| 日本午夜精品视频在线观看| 麻豆国产精品视频| 久久精品日韩一区二区三区| 亚洲一卡二卡三卡四卡五卡| 亚洲午夜免费电影| 亚洲成人久久影院| 一级中文字幕一区二区| 夜夜精品视频一区二区| 亚洲精品v日韩精品| 国产一区在线不卡| 成人福利视频网站| 91免费看`日韩一区二区| 欧美性videosxxxxx| 国产麻豆精品久久一二三| 丁香一区二区三区| 成人av午夜电影| 欧美成人免费网站| 国产精品无码永久免费888| 国产精品福利一区二区| 亚洲va欧美va人人爽| 久久国产剧场电影| 蜜臂av日日欢夜夜爽一区| 在线观看日韩av先锋影音电影院| 7777精品伊人久久久大香线蕉 | 中文字幕亚洲区| 亚洲美女在线国产| 日韩 欧美一区二区三区| 蜜桃av噜噜一区| 五月综合激情网| 国产在线视频一区二区三区| 成人伦理片在线| 欧美色老头old∨ideo| 欧美一级久久久| 成人欧美一区二区三区视频网页 | 欧美日韩一区视频| 日韩欧美国产一二三区| 国产精品私人影院| 丝袜亚洲另类欧美| 成人免费视频免费观看| 91国在线观看| 亚洲欧美激情小说另类| 久久99这里只有精品| 99re成人精品视频| 日韩免费成人网| 亚洲一区二区三区四区不卡| 久久网这里都是精品| 国产伦理精品不卡| 欧美色倩网站大全免费| 国产日韩av一区二区| 日韩成人一区二区三区在线观看| aaa欧美大片| 欧美性xxxxx极品少妇| 亚洲午夜电影在线观看| 国产成人精品免费| 欧美一区二区在线不卡| 国产精品福利电影一区二区三区四区| 亚洲福中文字幕伊人影院| 奇米影视一区二区三区| 在线观看视频一区| 国产午夜精品在线观看| 日韩av中文字幕一区二区| 91无套直看片红桃| 久久精品一二三| 青青草97国产精品免费观看无弹窗版| 91免费版在线| 国产午夜精品理论片a级大结局| 亚洲老妇xxxxxx| 成人aaaa免费全部观看| 久久尤物电影视频在线观看| 国产原创一区二区三区| 欧美一区午夜精品| 亚洲国产色一区| 97se狠狠狠综合亚洲狠狠| 久久精品在这里| 亚洲国产成人va在线观看天堂| 国产精品一级在线| 精品国产三级a在线观看| 欧美电视剧在线看免费| 亚洲精品免费看| 色综合天天综合狠狠| 日本一区二区电影| 国产成a人无v码亚洲福利| 欧美高清在线一区二区| 国产99一区视频免费| 中文一区二区在线观看| 国产精品自拍一区| 国产视频视频一区| 久久精品国产网站| 中文字幕亚洲区| 亚洲福利电影网| 日韩视频一区二区三区| 五月天激情综合| 日韩一级片在线观看| 中文字幕一区日韩精品欧美| 97se亚洲国产综合自在线观| 亚洲欧美日韩一区二区| 欧美色视频一区| 亚洲国产精品自拍| 麻豆精品久久精品色综合| 成人免费小视频| 色综合天天天天做夜夜夜夜做| 亚洲欧美日韩国产综合| 在线视频欧美精品| 亚洲高清免费一级二级三级| 亚洲国产精品成人综合 | 久久精品噜噜噜成人av农村| 91在线观看一区二区| 欧美大片一区二区三区| 国产福利91精品| 欧美激情在线一区二区| 成人福利视频在线看| 亚洲男人的天堂网| 午夜电影一区二区| 欧美性生活久久| 国产精品一二三四区| 亚洲高清免费观看高清完整版在线观看| 精品国产99国产精品|