]> Joshua Wise's Git repositories - netwatch.git/blob - aseg/packet.h
1544f047ab6bfa2ad13e6b7f188237c4ed641be2
[netwatch.git] / aseg / packet.h
1 #ifndef _PAGETABLE_H
2 #define _PAGETABLE_H
3
4 #include <stdint.h>
5
6 void * l2p(void * addr);
7
8 typedef struct {
9         uint32_t signature;
10         uint32_t type;
11         uint8_t data[];
12 } packet_t;
13
14 packet_t * check_packet(uint32_t logical_addr);
15
16 #endif /* _PAGETABLE_H */
This page took 0.016312 seconds and 2 git commands to generate.