儲存庫 vbox 的更動 50105
- 時間撮記:
- 2014-1-20 上午04:03:43 (11 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/NetworkServices/NAT/pxping.c
r50029 r50105 466 466 467 467 pxping_pcb_debug_print(pcb); /* XXX */ 468 printf(" seq %d len %u ttl %d\n",469 ntohs(icmph->seqno), (unsigned int)p->tot_len,470 IPH_TTL(iph));468 DPRINTF((" seq %d len %u ttl %d\n", 469 ntohs(icmph->seqno), (unsigned int)p->tot_len, 470 IPH_TTL(iph))); 471 471 472 472 ttl = IPH_TTL(iph); … … 684 684 685 685 pxping_pcb_debug_print(pcb); /* XXX */ 686 printf(" seq %d len %u hopl %d\n",687 ntohs(seq), (unsigned int)p->tot_len,688 IP6H_HOPLIM(iph));686 DPRINTF((" seq %d len %u hopl %d\n", 687 ntohs(seq), (unsigned int)p->tot_len, 688 IP6H_HOPLIM(iph))); 689 689 690 690 hopl = IP6H_HOPLIM(iph); … … 804 804 LWIP_ASSERT1(pcb->pprev_timeout == NULL); 805 805 806 printf("%s: ping %p\n", __func__, (void *)pcb);806 DPRINTF(("%s: ping %p\n", __func__, (void *)pcb)); 807 807 808 808 --pxping->npcbs; … … 943 943 944 944 pxping_pcb_debug_print(pcb); /* XXX */ 945 printf(" - created\n");945 DPRINTF((" - created\n")); 946 946 947 947 pxping_timer_needed(pxping); … … 950 950 /* just bump up expiration timeout lazily */ 951 951 pxping_pcb_debug_print(pcb); /* XXX */ 952 printf(" - slot %d -> %d\n",953 (unsigned int)pcb->timeout_slot,954 (unsigned int)pxping->timeout_slot);952 DPRINTF((" - slot %d -> %d\n", 953 (unsigned int)pcb->timeout_slot, 954 (unsigned int)pxping->timeout_slot)); 955 955 pcb->timeout_slot = pxping->timeout_slot; 956 956 } … … 1013 1013 if (xpcb->timeout_slot == pxping->timeout_slot) { 1014 1014 /* expired */ 1015 printf("... ");1016 pxping_pcb_debug_print(xpcb);1017 printf(" - expired\n");1018 1019 1015 pxping_pcb_deregister(pxping, xpcb); 1020 1016 pxping_pcb_delete(pxping, xpcb); … … 1025 1021 * but delayed actually moving the pcb until now. 1026 1022 */ 1027 printf("... ");1028 pxping_pcb_debug_print(xpcb);1029 printf(" - alive slot %d -> %d\n",1030 (unsigned int)pxping->timeout_slot,1031 (unsigned int)xpcb->timeout_slot);1032 1033 1023 pxping_timeout_del(pxping, xpcb); /* from current slot */ 1034 1024 pxping_timeout_add(pxping, xpcb); /* to new slot */
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器