blob: a4a24fffd3039a13c9851a46dcd61cda490615b6 [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::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 bt::att
#endif // SRC_CONNECTIVITY_BLUETOOTH_CORE_BT_HOST_ATT_PACKET_H_