|
Message
From: cvs at opencores.org<cvs@o...>
Date: Sun Apr 22 07:05:32 CEST 2007
Subject: [cvs-checkins] MODIFIED: mlite ...
Date: 00/07/04 22:07:05 Modified: mlite/kernel tcpip.h Log: Guard against multiple includes Revision Changes Path 1.6 mlite/kernel/tcpip.h http://www.opencores.org/cvsweb.shtml/mlite/kernel/tcpip.h.diff?r1=1.5&r2=1.6 (In the diff below, changes in quantity of whitespace are not shown.) Index: tcpip.h =================================================================== RCS file: /cvsroot/rhoads/mlite/kernel/tcpip.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -b -r1.5 -r1.6 --- tcpip.h 5 Oct 2006 05:15:35 -0000 1.5 +++ tcpip.h 22 Apr 2007 05:05:32 -0000 1.6 @@ -9,6 +9,8 @@ * DESCRIPTION: * Plasma TCP/IP Protocol Stack *--------------------------------------------------------------------*/ +#ifndef __TCPIP_H__ +#define __TCPIP_H__ #define PACKET_SIZE 600 #define FRAME_COUNT 100 #define FRAME_COUNT_WINDOW 50 @@ -91,4 +93,4 @@ } PageEntry_t; void HttpInit(const PageEntry_t *Pages, int UseFiles); - +#endif //__TCPIP_H__
|
 |