| /* |
| * |
| * 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 Application Channel class. The object of this |
| * class can be used by CHIP data model cluster applications to send |
| * and receive messages. The messages are encrypted using session keys. |
| */ |
| |
| #pragma once |
| |
| #include <messaging/ExchangeMessageDispatch.h> |
| #include <transport/TransportMgr.h> |
| |
| namespace chip { |
| |
| class SessionEstablishmentExchangeDispatch : public Messaging::ExchangeMessageDispatch |
| { |
| public: |
| SessionEstablishmentExchangeDispatch() {} |
| |
| virtual ~SessionEstablishmentExchangeDispatch() {} |
| |
| CHIP_ERROR Init(TransportMgrBase * transportMgr) |
| { |
| ReturnErrorCodeIf(transportMgr == nullptr, CHIP_ERROR_INVALID_ARGUMENT); |
| mTransportMgr = transportMgr; |
| return ExchangeMessageDispatch::Init(); |
| } |
| |
| CHIP_ERROR PrepareMessage(SessionHandle session, PayloadHeader & payloadHeader, System::PacketBufferHandle && message, |
| EncryptedPacketBufferHandle & out) override; |
| CHIP_ERROR SendPreparedMessage(SessionHandle session, const EncryptedPacketBufferHandle & preparedMessage) const override; |
| |
| CHIP_ERROR OnMessageReceived(uint32_t messageCounter, const PayloadHeader & payloadHeader, |
| const Transport::PeerAddress & peerAddress, Messaging::MessageFlags msgFlags, |
| Messaging::ReliableMessageContext * reliableMessageContext) override; |
| |
| const Transport::PeerAddress & GetPeerAddress() const { return mPeerAddress; } |
| |
| void SetPeerAddress(const Transport::PeerAddress & address) { mPeerAddress = address; } |
| |
| protected: |
| bool MessagePermitted(uint16_t protocol, uint8_t type) override; |
| |
| bool IsReliableTransmissionAllowed() const override |
| { |
| // If the underlying transport is UDP. |
| return (mPeerAddress.GetTransportType() == Transport::Type::kUdp); |
| } |
| |
| bool IsEncryptionRequired() const override { return false; } |
| |
| private: |
| TransportMgrBase * mTransportMgr = nullptr; |
| Transport::PeerAddress mPeerAddress; |
| }; |
| |
| } // namespace chip |