diff options
author | CH Chethan Reddy <40890937+Chethan2k1@users.noreply.github.com> | 2020-07-18 01:46:30 +0530 |
---|---|---|
committer | CH Chethan Reddy <40890937+Chethan2k1@users.noreply.github.com> | 2020-07-30 22:10:27 +0530 |
commit | 1fcd768f88f7e84978d19283c9fa6205624f2544 (patch) | |
tree | 97afdac31c014c4eedb5d0da45362835d7c04d22 /src/ChatPage.h | |
parent | Updating keys of outdated encrypted users (diff) | |
download | nheko-1fcd768f88f7e84978d19283c9fa6205624f2544.tar.xz |
Adding Room Key Verification Stuff
Diffstat (limited to 'src/ChatPage.h')
-rw-r--r-- | src/ChatPage.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/ChatPage.h b/src/ChatPage.h index 172f74fe..0e7c889f 100644 --- a/src/ChatPage.h +++ b/src/ChatPage.h @@ -167,16 +167,18 @@ signals: //! Signals for device verificaiton void recievedDeviceVerificationAccept( - const mtx::events::collections::DeviceEvents &message); + const mtx::events::msg::KeyVerificationAccept &message); void recievedDeviceVerificationRequest( - const mtx::events::collections::DeviceEvents &message); + const mtx::events::msg::KeyVerificationRequest &message, + std::string sender); void recievedDeviceVerificationCancel( - const mtx::events::collections::DeviceEvents &message); - void recievedDeviceVerificationKey(const mtx::events::collections::DeviceEvents &message); - void recievedDeviceVerificationMac(const mtx::events::collections::DeviceEvents &message); - void recievedDeviceVerificationStart(const mtx::events::collections::DeviceEvents &message); - void recievedDeviceVerificationReady(const mtx::events::collections::DeviceEvents &message); - void recievedDeviceVerificationDone(const mtx::events::collections::DeviceEvents &message); + const mtx::events::msg::KeyVerificationCancel &message); + void recievedDeviceVerificationKey(const mtx::events::msg::KeyVerificationKey &message); + void recievedDeviceVerificationMac(const mtx::events::msg::KeyVerificationMac &message); + void recievedDeviceVerificationStart(const mtx::events::msg::KeyVerificationStart &message, + std::string sender); + void recievedDeviceVerificationReady(const mtx::events::msg::KeyVerificationReady &message); + void recievedDeviceVerificationDone(const mtx::events::msg::KeyVerificationDone &message); private slots: void showUnreadMessageNotification(int count); |