Rename layer2_structs -> packet_structs
This commit is contained in:
parent
f17d5649fc
commit
9a151e0cbb
|
@ -1,7 +1,7 @@
|
|||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "layer2_structs.h"
|
||||
#include "packet_structs.h"
|
||||
|
||||
|
||||
size_t layer2_encode_packet_header(const layer2_packet_header_t *header, uint8_t *encoded)
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef LAYER2_STRUCTS_H
|
||||
#define LAYER2_STRUCTS_H
|
||||
#ifndef PACKET_STRUCTS_H
|
||||
#define PACKET_STRUCTS_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
@ -55,4 +55,4 @@ typedef struct layer2_data_header_s {
|
|||
|
||||
// TODO
|
||||
|
||||
#endif // LAYER2_STRUCTS_H
|
||||
#endif // PACKET_STRUCTS_H
|
Loading…
Reference in a new issue