Fixing function headers.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7114 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
niry
2008-12-24 08:14:19 +00:00
parent 0c323d071d
commit 276dcc1b14
12 changed files with 100 additions and 95 deletions

View File

@@ -182,7 +182,7 @@ struct _TCP_CB {
//
// RFC793 and RFC1122 defined variables
//
TCP_STATES State; ///< TCP state, such as SYN_SENT, LISTEN
UINT8 State; ///< TCP state, such as SYN_SENT, LISTEN
UINT8 DelayedAck; ///< Number of delayed ACKs
UINT16 HeadSum; ///< Checksum of the fixed parts of pesudo
///< header: Src IP, Dst IP, 0, Protocol,
@@ -342,7 +342,7 @@ extern UINT32 mTcpTick;
typedef
VOID
(*TCP_TIMER_HANDLER) (
IN TCP_CB * Tcb
IN TCP_CB *Tcb
);
#include "Tcp4Func.h"