summaryrefslogtreecommitdiffstats
path: root/src/bluetooth/qbluetoothsocket_win_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bluetooth/qbluetoothsocket_win_p.h')
-rw-r--r--src/bluetooth/qbluetoothsocket_win_p.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/bluetooth/qbluetoothsocket_win_p.h b/src/bluetooth/qbluetoothsocket_win_p.h
index 3255428a..fe0fc99f 100644
--- a/src/bluetooth/qbluetoothsocket_win_p.h
+++ b/src/bluetooth/qbluetoothsocket_win_p.h
@@ -100,6 +100,22 @@ public:
qint64 bytesAvailable() const override;
bool canReadLine() const override;
qint64 bytesToWrite() const override;
+
+private slots:
+ void _q_readNotify();
+ void _q_writeNotify();
+ void _q_exceptNotify();
+
+private:
+ bool createNotifiers();
+ void updateAddressesAndPorts();
+ bool configureSecurity();
+
+ QSocketNotifier *exceptNotifier = nullptr;
+ QBluetoothAddress m_localAddress;
+ quint16 m_localPort = 0;
+ QBluetoothAddress m_peerAddress;
+ quint16 m_peerPort = 0;
};
QT_END_NAMESPACE