tdesktop/Telegram/SourceFiles/mtproto/details/mtproto_tls_socket.h

67 lines
1.7 KiB
C
Raw Normal View History

2019-07-08 13:56:09 +00:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
2019-12-02 13:10:19 +00:00
#include "mtproto/details/mtproto_abstract_socket.h"
2019-07-08 13:56:09 +00:00
2019-12-02 13:10:19 +00:00
namespace MTP::details {
2019-07-08 13:56:09 +00:00
class TlsSocket final : public AbstractSocket {
2019-07-08 13:56:09 +00:00
public:
TlsSocket(
not_null<QThread*> thread,
const bytes::vector &secret,
const QNetworkProxy &proxy);
2019-07-08 13:56:09 +00:00
void connectToHost(const QString &address, int port) override;
2019-07-28 16:00:42 +00:00
bool isGoodStartNonce(bytes::const_span nonce) override;
void timedOut() override;
2019-07-08 13:56:09 +00:00
bool isConnected() override;
bool hasBytesAvailable() override;
int64 read(bytes::span buffer) override;
void write(bytes::const_span prefix, bytes::const_span buffer) override;
2019-07-08 13:56:09 +00:00
int32 debugState() override;
private:
enum class State {
NotConnected,
Connecting,
WaitingHello,
Connected,
2019-07-08 13:56:09 +00:00
Error,
};
2019-07-08 16:02:45 +00:00
[[nodiscard]] bytes::const_span domainFromSecret() const;
[[nodiscard]] bytes::const_span keyFromSecret() const;
2019-07-08 13:56:09 +00:00
void plainConnected();
void plainDisconnected();
void plainReadyRead();
void handleError(int errorCode = 0);
[[nodiscard]] bool requiredHelloPartReady() const;
void readHello();
void checkHelloParts12(int parts1Size);
void checkHelloParts34(int parts123Size);
void checkHelloDigest();
void readData();
[[nodiscard]] bool checkNextPacket();
void shiftIncomingBy(int amount);
2019-07-08 13:56:09 +00:00
2019-07-08 16:02:45 +00:00
const bytes::vector _secret;
2019-07-08 13:56:09 +00:00
QTcpSocket _socket;
State _state = State::NotConnected;
QByteArray _incoming;
int _incomingGoodDataOffset = 0;
int _incomingGoodDataLimit = 0;
2019-07-08 13:56:09 +00:00
int16 _serverHelloLength = 0;
};
2019-12-02 13:10:19 +00:00
} // namespace MTP::details