X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=MdeModulePkg%2FUniversal%2FNetwork%2FTcp4Dxe%2FTcp4Misc.c;fp=MdeModulePkg%2FUniversal%2FNetwork%2FTcp4Dxe%2FTcp4Misc.c;h=1a7c41aa0b564a2e2e770e6ff2f8cca2844f2dc9;hp=95f47f91bc40b41c2474480e858ae91ca2a3ee81;hb=dea6914dac8ca883be4cee21b139b263b73769ec;hpb=f3612a8d58eeb6448ab8e5f5c28c8ce6a3356c5f diff --git a/MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Misc.c b/MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Misc.c index 95f47f91bc..1a7c41aa0b 100644 --- a/MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Misc.c +++ b/MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Misc.c @@ -1,7 +1,7 @@ /** @file Misc support routines for tcp. -Copyright (c) 2005 - 2015, Intel Corporation. All rights reserved.
+Copyright (c) 2005 - 2016, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -504,7 +504,7 @@ TcpSetState ( ASSERT (State < (sizeof (mTcpStateName) / sizeof (CHAR16 *))); DEBUG ( - (EFI_D_INFO, + (EFI_D_NET, "Tcb (%p) state %s --> %s\n", Tcb, mTcpStateName[Tcb->State], @@ -815,13 +815,13 @@ TcpOnAppConsume ( if (TcpOld < Tcb->RcvMss) { - DEBUG ((EFI_D_INFO, "TcpOnAppConsume: send a window" + DEBUG ((EFI_D_NET, "TcpOnAppConsume: send a window" " update for a window closed Tcb %p\n", Tcb)); TcpSendAck (Tcb); } else if (Tcb->DelayedAck == 0) { - DEBUG ((EFI_D_INFO, "TcpOnAppConsume: scheduled a delayed" + DEBUG ((EFI_D_NET, "TcpOnAppConsume: scheduled a delayed" " ACK to update window for Tcb %p\n", Tcb)); Tcb->DelayedAck = 1;