]> Joshua Wise's Git repositories - netwatch.git/blobdiff - netwatch/packet.h
Move aseg-paging to netwatch/
[netwatch.git] / netwatch / packet.h
diff --git a/netwatch/packet.h b/netwatch/packet.h
new file mode 100644 (file)
index 0000000..1544f04
--- /dev/null
@@ -0,0 +1,16 @@
+#ifndef _PAGETABLE_H
+#define _PAGETABLE_H
+
+#include <stdint.h>
+
+void * l2p(void * addr);
+
+typedef struct {
+       uint32_t signature;
+       uint32_t type;
+       uint8_t data[];
+} packet_t;
+
+packet_t * check_packet(uint32_t logical_addr);
+
+#endif /* _PAGETABLE_H */
This page took 0.022993 seconds and 4 git commands to generate.