Skip to content

Commit

Permalink
Work on README.md
Browse files Browse the repository at this point in the history
Signed-off-by: Volker Christian <me@vchrist.at>
  • Loading branch information
VolkerChristian committed Mar 27, 2024
1 parent 33c168d commit 9f3a534
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1584,30 +1584,30 @@ void connect(const std::string& sunPath,
```c++
void connect(const std::string& btAddress,
uint8_t channel,
const std::function<void(const SocketAddress&, core::socket::State)>& onStatus)
uint8_t channel,
const std::function<void(const SocketAddress&, core::socket::State)>& onStatus)
```

```c++
void connect(const std::string& btAddress,
uint8_t channel,
uint8_t bindChannel,
const std::function<void(const SocketAddress&, core::socket::State)>& onStatus)
uint8_t channel,
uint8_t bindChannel,
const std::function<void(const SocketAddress&, core::socket::State)>& onStatus)
```
```c++
void connect(const std::string& btAddress,
uint8_t channel,
const std::string& bindBtAddress,
const std::function<void(const SocketAddress&, core::socket::State)>& onStatus)
uint8_t channel,
const std::string& bindBtAddress,
const std::function<void(const SocketAddress&, core::socket::State)>& onStatus)
```

```c++
void connect(const std::string& btAddress,
uint8_t channel,
const std::string& bindBtAddress,
uint8_t bindChannel,
const std::function<void(const SocketAddress&, core::socket::State)>& onStatus)
uint8_t channel,
const std::string& bindBtAddress,
uint8_t bindChannel,
const std::function<void(const SocketAddress&, core::socket::State)>& onStatus)
```
#### Bluetooth L2CAP specific `connect()` Methods
Expand Down

0 comments on commit 9f3a534

Please sign in to comment.