forked from h2zero/esp-nimble-cpp
Initialize peerAddress in client constructor.
Co-authored-by: wakwak-koba <wakwak-koba@users.noreply.github.com>
This commit is contained in:
@@ -53,8 +53,7 @@ static NimBLEClientCallbacks defaultCallbacks;
|
||||
* @brief Constructor, private - only callable by NimBLEDevice::createClient
|
||||
* to ensure proper handling of the list of client objects.
|
||||
*/
|
||||
NimBLEClient::NimBLEClient()
|
||||
{
|
||||
NimBLEClient::NimBLEClient(const NimBLEAddress &peerAddress) : m_peerAddress(peerAddress) {
|
||||
m_pClientCallbacks = &defaultCallbacks;
|
||||
m_conn_id = BLE_HS_CONN_HANDLE_NONE;
|
||||
m_isConnected = false;
|
||||
|
@@ -71,7 +71,7 @@ public:
|
||||
void discoverAttributes();
|
||||
|
||||
private:
|
||||
NimBLEClient();
|
||||
NimBLEClient(const NimBLEAddress &peerAddress);
|
||||
~NimBLEClient();
|
||||
|
||||
friend class NimBLEDevice;
|
||||
@@ -84,7 +84,7 @@ private:
|
||||
void *arg);
|
||||
bool retrieveServices(const NimBLEUUID *uuid_filter = nullptr);
|
||||
|
||||
NimBLEAddress m_peerAddress = NimBLEAddress("");
|
||||
NimBLEAddress m_peerAddress;
|
||||
uint16_t m_conn_id;
|
||||
bool m_isConnected;
|
||||
bool m_waitingToConnect;
|
||||
|
@@ -148,10 +148,7 @@ void NimBLEDevice::stopAdvertising() {
|
||||
NIMBLE_MAX_CONNECTIONS);
|
||||
}
|
||||
|
||||
NimBLEClient* pClient = new NimBLEClient();
|
||||
if(peerAddress != NimBLEAddress("")) {
|
||||
pClient->setPeerAddress(peerAddress);
|
||||
}
|
||||
NimBLEClient* pClient = new NimBLEClient(peerAddress);
|
||||
m_cList.push_back(pClient);
|
||||
|
||||
return pClient;
|
||||
|
Reference in New Issue
Block a user