summaryrefslogtreecommitdiff
path: root/src/protocol/internal/fqterm_ssh2_packet.h
blob: d0d40ed291a50f7fcb6a05d698e80b905900fd05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// SPDX-License-Identifier: GPL-2.0-or-later

#ifndef FQTERM_SSH2_PACKET_H
#define FQTERM_SSH2_PACKET_H

#include "fqterm_ssh_packet.h"
#include "buffer.h"

namespace FQTerm {

class FQTermSSH2PacketReceiver: public FQTermSSHPacketReceiver
{
private:
	uint32_t decrypted;
public:
FQTermSSH2PacketReceiver() : decrypted(0) { }

	virtual void parseData(buffer *input);
};

}  // namespace FQTerm

#endif  // FQTERM_SSH2_PACKET