blob: 44d4b1a84fff209c30bc743aeaf400185376fa9b [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_CONNECTIVITY_BLUETOOTH_CORE_BT_HOST_ATT_PACKET_H_
#define SRC_CONNECTIVITY_BLUETOOTH_CORE_BT_HOST_ATT_PACKET_H_
#include "src/connectivity/bluetooth/core/bt-host/att/att.h"
#include "src/connectivity/bluetooth/core/bt-host/common/byte_buffer.h"
#include "src/connectivity/bluetooth/core/bt-host/common/packet_view.h"
namespace bt {
namespace att {
// Utilities for processing ATT protocol Packets.
class PacketReader : public PacketView<Header> {
public:
explicit PacketReader(const ByteBuffer* buffer);
inline OpCode opcode() const { return header().opcode; }
};
class PacketWriter : public MutablePacketView<Header> {
public:
// Constructor writes |opcode| into |buffer|.
PacketWriter(OpCode opcode, MutableByteBuffer* buffer);
};
} // namespace att
} // namespace bt
#endif // SRC_CONNECTIVITY_BLUETOOTH_CORE_BT_HOST_ATT_PACKET_H_