subbrute 1.1 KB

123456789101112131415161718192021222324252627282930
  1. commit ef60d7b8096707e6255211c15cdcf0e04e3b5980
  2. Author: MX <10697207+xMasterX@users.noreply.github.com>
  3. Date: Fri Sep 6 12:36:57 2024 +0300
  4. add one more protocol
  5. diff --git a/subbrute_protocols.c b/subbrute_protocols.c
  6. index 574d5ca86..528cc4121 100644
  7. --- a/subbrute_protocols.c
  8. +++ b/subbrute_protocols.c
  9. @@ -544,6 +544,7 @@ static const char* subbrute_protocol_file_types[] = {
  10. [LegrandFileProtocol] = "Legrand",
  11. [HollarmileProtocol] = "Hollarm",
  12. [GangQiFileProtocol] = "GangQi",
  13. + [Marantec24FileProtocol] = "Marantec24",
  14. [UnknownFileProtocol] = "Unknown"};
  15. /**
  16. diff --git a/subbrute_protocols.h b/subbrute_protocols.h
  17. index 9dade49ef..9343d1236 100644
  18. --- a/subbrute_protocols.h
  19. +++ b/subbrute_protocols.h
  20. @@ -60,6 +60,7 @@ typedef enum {
  21. LegrandFileProtocol,
  22. HollarmileProtocol,
  23. GangQiFileProtocol,
  24. + Marantec24FileProtocol,
  25. UnknownFileProtocol,
  26. TotalFileProtocol,
  27. } SubBruteFileProtocol;