| 1234567891011121314151617181920212223242526272829 |
- #pragma once
- #include "continuity.h"
- #include "fastpair.h"
- #include "easysetup.h"
- #include "swiftpair.h"
- union ProtocolCfg {
- ContinuityCfg continuity;
- FastpairCfg fastpair;
- EasysetupCfg easysetup;
- SwiftpairCfg swiftpair;
- };
- extern const Protocol* protocols[];
- extern const size_t protocols_count;
- typedef struct {
- bool random_mac;
- ProtocolCfg cfg;
- } Payload;
- struct Attack {
- const char* title;
- const char* text;
- const Protocol* protocol;
- Payload payload;
- };
|