Commit 64e8ec3f authored by DrKLO's avatar DrKLO

compile fix

parent e313885a
...@@ -56,11 +56,12 @@ public: ...@@ -56,11 +56,12 @@ public:
Connection *getPushConnection(bool create); Connection *getPushConnection(bool create);
Connection *getConnectionByType(uint32_t connectionType, bool create); Connection *getConnectionByType(uint32_t connectionType, bool create);
static void aesIgeEncryption(uint8_t *buffer, uint8_t *key, uint8_t *iv, bool encrypt, bool changeIv, uint32_t length);
private: private:
void onHandshakeConnectionClosed(Connection *connection); void onHandshakeConnectionClosed(Connection *connection);
void onHandshakeConnectionConnected(Connection *connection); void onHandshakeConnectionConnected(Connection *connection);
void processHandshakeResponse(TLObject *message, int64_t messageId); void processHandshakeResponse(TLObject *message, int64_t messageId);
void aesIgeEncryption(uint8_t *buffer, uint8_t *key, uint8_t *iv, bool encrypt, bool changeIv, uint32_t length);
NativeByteBuffer *createRequestsData(std::vector<std::unique_ptr<NetworkMessage>> &requests, int32_t *quickAckId, Connection *connection); NativeByteBuffer *createRequestsData(std::vector<std::unique_ptr<NetworkMessage>> &requests, int32_t *quickAckId, Connection *connection);
bool decryptServerResponse(int64_t keyId, uint8_t *key, uint8_t *data, uint32_t length); bool decryptServerResponse(int64_t keyId, uint8_t *key, uint8_t *data, uint32_t length);
TLObject *getCurrentHandshakeRequest(); TLObject *getCurrentHandshakeRequest();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment