-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add echo handler in app server for secure channel testing (#5236)
- Loading branch information
1 parent
a0db449
commit a47019b
Showing
6 changed files
with
128 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* | ||
* Copyright (c) 2021 Project CHIP Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/** | ||
* @file | ||
* This file implements the handler for echo messages. | ||
*/ | ||
|
||
#include <app/server/EchoHandler.h> | ||
|
||
#include <protocols/echo/Echo.h> | ||
#include <support/ErrorStr.h> | ||
|
||
namespace { | ||
|
||
// The EchoServer object. | ||
chip::Protocols::Echo::EchoServer gEchoServer; | ||
|
||
/** | ||
* Callback handler when a CHIP EchoRequest is received. | ||
* | ||
* @param [in] ec The exchange context holding the incoming message. | ||
* @param [in] payload The buffer holding the message. This function guarantees | ||
* that it will free the buffer before returning. | ||
* | ||
*/ | ||
void HandleEchoRequestReceived(chip::Messaging::ExchangeContext * ec, chip::System::PacketBufferHandle payload) | ||
{ | ||
ChipLogProgress(AppServer, "Echo Request, len=%u ... sending response.\n", payload->DataLength()); | ||
} | ||
|
||
} // namespace | ||
|
||
CHIP_ERROR InitEchoHandler(chip::Messaging::ExchangeManager * exchangeMgr) | ||
{ | ||
CHIP_ERROR err = CHIP_NO_ERROR; | ||
|
||
err = gEchoServer.Init(exchangeMgr); | ||
SuccessOrExit(err); | ||
|
||
// Arrange to get a callback whenever an Echo Request is received. | ||
gEchoServer.SetEchoRequestReceived(HandleEchoRequestReceived); | ||
|
||
exit: | ||
if (err != CHIP_NO_ERROR) | ||
{ | ||
ChipLogError(AppServer, "EchoServer failed, err:%s\n", chip::ErrorStr(err)); | ||
} | ||
|
||
return err; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* | ||
* Copyright (c) 2021 Project CHIP Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/** | ||
* @file | ||
* This file defines the API for the handler for echo messages. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <messaging/ExchangeMgr.h> | ||
#include <system/SystemPacketBuffer.h> | ||
|
||
/** | ||
* Register an unsolicited message handler for Echo protocol to be ready to process | ||
* Echo messages. | ||
* | ||
*/ | ||
CHIP_ERROR InitEchoHandler(chip::Messaging::ExchangeManager * exchangeMgr); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters