You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
348 B
C++
20 lines
348 B
C++
3 years ago
|
#ifndef C42FA9F6_8CF3_453F_8FA0_918E543DCD59
|
||
|
#define C42FA9F6_8CF3_453F_8FA0_918E543DCD59
|
||
|
|
||
|
#include <time.h>
|
||
|
|
||
|
struct Packet {
|
||
|
time_t timestamp;
|
||
|
|
||
|
char srcMac[17];
|
||
|
char dstMac[17];
|
||
|
|
||
|
unsigned int size;
|
||
|
|
||
|
char signal;
|
||
|
unsigned int frequency;
|
||
|
unsigned char linkSpeed;
|
||
|
};
|
||
|
|
||
|
#endif /* C42FA9F6_8CF3_453F_8FA0_918E543DCD59 */
|