Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 384d9ff9 authored by Hui Peng's avatar Hui Peng Committed by Gerrit Code Review
Browse files

Merge "[Invisalign2] define tSMP_OOB_DATA_TYPE as enum" into main

parents 8d52ad3e 4fbace11
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -92,8 +92,12 @@ enum { SMP_OOB_NONE, SMP_OOB_PRESENT, SMP_OOB_UNKNOWN };
typedef uint8_t tSMP_OOB_FLAG;

/* type of OOB data required from application */
enum { SMP_OOB_INVALID_TYPE, SMP_OOB_PEER, SMP_OOB_LOCAL, SMP_OOB_BOTH };
typedef uint8_t tSMP_OOB_DATA_TYPE;
typedef enum : uint8_t {
  SMP_OOB_INVALID_TYPE,
  SMP_OOB_PEER,
  SMP_OOB_LOCAL,
  SMP_OOB_BOTH,
} tSMP_OOB_DATA_TYPE;

enum : uint8_t {
  SMP_AUTH_NO_BOND = 0x00,