aboutsummaryrefslogtreecommitdiff
path: root/gd/l2cap/classic/internal/channel_configuration_state.h
blob: b0dead596c879f3bd158286f0dfda1654a95c657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
 * Copyright 2019 The Android Open Source Project
 *
 * 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.
 */

#pragma once

#include "l2cap/l2cap_packets.h"
#include "l2cap/mtu.h"

namespace bluetooth {
namespace l2cap {
namespace classic {
namespace internal {

struct ChannelConfigurationState {
 public:
  enum State {
    /**
     * for the initiator path, a request has been sent but a positive response has not yet been received, and for the
     * acceptor path, a request with acceptable options has not yet been received.
     */
    WAIT_CONFIG_REQ_RSP,
    /**
     * the acceptor path is complete after having responded to acceptable options, but for the initiator path, a
     * positive response on the recent request has not yet been received.
     */
    WAIT_CONFIG_RSP,
    /**
     * the initiator path is complete after having received a positive response, but for the acceptor path, a request
     * with acceptable options has not yet been received.
     */
    WAIT_CONFIG_REQ,
    /**
     * Configuration is complete
     */
    CONFIGURED,
  };
  State state_ = State::WAIT_CONFIG_REQ_RSP;

  Mtu incoming_mtu_ = kDefaultClassicMtu;
  Mtu outgoing_mtu_ = kDefaultClassicMtu;
  RetransmissionAndFlowControlModeOption retransmission_and_flow_control_mode_;
  RetransmissionAndFlowControlConfigurationOption local_retransmission_and_flow_control_;
  RetransmissionAndFlowControlConfigurationOption remote_retransmission_and_flow_control_;
  FcsType fcs_type_ = FcsType::DEFAULT;
};
}  // namespace internal
}  // namespace classic
}  // namespace l2cap
}  // namespace bluetooth