Skip to content

Commit

Permalink
Fix restyle
Browse files Browse the repository at this point in the history
  • Loading branch information
jepenven-silabs committed Oct 15, 2021
1 parent 0a3356d commit c1ca671
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/protocols/secure_channel/SessionIDAllocator.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
// integrity algorithm to use for the message.The Session ID field is always present.
// A Session ID of 0 SHALL indicate an unsecured session with no encryption or message integrity checking.


namespace chip {

class SessionIDAllocator
Expand All @@ -44,8 +43,7 @@ class SessionIDAllocator
uint16_t Peek();

private:

static constexpr uint16_t kMaxSessionID = UINT16_MAX;
static constexpr uint16_t kMaxSessionID = UINT16_MAX;
static constexpr uint16_t kUnsecuredSessionId = 0;

uint16_t mNextAvailable = 1;
Expand Down

0 comments on commit c1ca671

Please sign in to comment.