File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -84,10 +84,12 @@ static bool skipSign(MyMessage &msg) {
84
84
SIGN_DEBUG (PSTR (" Skipping security for ACK on command %d type %d\n " ), mGetCommand (msg), msg.type );
85
85
return true ;
86
86
} else if (mGetCommand (msg) == C_INTERNAL &&
87
- (msg.type == I_NONCE_REQUEST || msg.type == I_NONCE_RESPONSE || msg.type == I_SIGNING_PRESENTATION ||
88
- msg.type == I_ID_REQUEST || msg.type == I_ID_RESPONSE ||
89
- msg.type == I_FIND_PARENT || msg.type == I_FIND_PARENT_RESPONSE ||
90
- msg.type == I_HEARTBEAT || msg.type == I_HEARTBEAT_RESPONSE)) {
87
+ (msg.type == I_NONCE_REQUEST || msg.type == I_NONCE_RESPONSE || msg.type == I_SIGNING_PRESENTATION ||
88
+ msg.type == I_ID_REQUEST || msg.type == I_ID_RESPONSE ||
89
+ msg.type == I_FIND_PARENT || msg.type == I_FIND_PARENT_RESPONSE ||
90
+ msg.type == I_HEARTBEAT || msg.type == I_HEARTBEAT_RESPONSE ||
91
+ msg.type == I_PING || msg.type == I_PONG ||
92
+ msg.type == I_REGISTRATION_REQUEST )) {
91
93
SIGN_DEBUG (PSTR (" Skipping security for command %d type %d\n " ), mGetCommand (msg), msg.type );
92
94
return true ;
93
95
} else if (mGetCommand (msg) == C_STREAM &&
You can’t perform that action at this time.
0 commit comments