Revision: 14680
Author: adrian.chadd
Date: Thu May 20 02:16:16 2010
Log: Begin fleshing out some functions to handle manipulating the
hierarchyLogEntry structs.
http://code.google.com/p/lusca-cache/source/detail?r=14680
Added:
/branches/LUSCA_HEAD/src/hierarchy_entry.c
/branches/LUSCA_HEAD/src/hierarchy_entry.h
Modified:
/branches/LUSCA_HEAD/src/Makefile.am
=======================================
--- /dev/null
+++ /branches/LUSCA_HEAD/src/hierarchy_entry.c Thu May 20 02:16:16 2010
@@ -0,0 +1,8 @@
+
+#include "squid.h"
+
+void
+hierarchyLogEntryCopy(HierarchyLogEntry *dst, HierarchyLogEntry *src)
+{
+ memcpy(dst, src, sizeof(HierarchyLogEntry));
+}
=======================================
--- /dev/null
+++ /branches/LUSCA_HEAD/src/hierarchy_entry.h Thu May 20 02:16:16 2010
@@ -0,0 +1,6 @@
+#ifndef __LUSCA_HIERARCHY_ENTRY_H__
+#define __LUSCA_HIERARCHY_ENTRY_H__
+
+extern void hierarchyLogEntryCopy(HierarchyLogEntry *dst,
HierarchyLogEntry *src);
+
+#endif
=======================================
--- /branches/LUSCA_HEAD/src/Makefile.am Wed May 19 20:20:46 2010
+++ /branches/LUSCA_HEAD/src/Makefile.am Thu May 20 02:16:16 2010
@@ -137,6 +137,7 @@
globals.h \
gopher.c \
helper.c \
+ hierarchy_entry.c \
$(HTCPSOURCE) \
http.c \
HttpStatusLine.c \
--
You received this message because you are subscribed to the Google Groups
"lusca-commit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/lusca-commit?hl=en.