This is the mail archive of the ecos-patches@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

NET: MD5 function mappings


Index: ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos-opt/net/net/bsd_tcpip/current/ChangeLog,v
retrieving revision 1.39
diff -u -5 -r1.39 ChangeLog
--- ChangeLog	16 Dec 2003 14:46:00 -0000	1.39
+++ ChangeLog	21 Dec 2003 12:27:43 -0000
@@ -1,5 +1,10 @@
+2003-12-21  Nick Garnett  <nickg@calivar.com>
+
+	* include/sys/param.h: Restored MD5 function mappings. These were
+	accidentally removed earlier.
+
 2003-12-16  Gary Thomas  <gary@mlbassoc.com>
 
 	* cdl/freebsd_net.cdl: Increase default memory pool size to
 	include at least enough space to allocate PCBs and SOCKETs.
 	Without this, if the number of open files was raised, the
Index: include/sys/param.h
===================================================================
RCS file: /cvs/ecos/ecos-opt/net/net/bsd_tcpip/current/include/sys/param.h,v
retrieving revision 1.6
diff -u -5 -r1.6 param.h
--- include/sys/param.h	22 Nov 2003 12:59:21 -0000	1.6
+++ include/sys/param.h	21 Dec 2003 12:27:57 -0000
@@ -29,10 +29,15 @@
 #ifdef _KERNEL
 // Namespace munging - this should keep the "kernel" namespace
 // polution to a minimum
 
 // TEXT symbols
+#define MD5Final cyg_MD5Final
+#define MD5Init cyg_MD5Init
+#define MD5Pad cyg_MD5Pad
+#define MD5Transform cyg_MD5Transform
+#define MD5Update cyg_MD5Update
 #define _ip_mcast_src cyg__ip_mcast_src
 #define _ip_mforward cyg__ip_mforward
 #define _ip_mrouter_done cyg__ip_mrouter_done
 #define _ip_mrouter_get cyg__ip_mrouter_get
 #define _ip_mrouter_set cyg__ip_mrouter_set


-- 
Nick Garnett                    eCos Kernel Architect
http://www.ecoscentric.com      The eCos and RedBoot experts


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]