blob: a8a07e2e5a6432a487871be78229afcbb4e5ad1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2018
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#pragma once
#include "td/utils/common.h"
namespace td {
class DhConfig {
public:
int32 version = 0;
string prime;
int32 g = 0;
bool empty() const {
return prime.empty();
}
template <class StorerT>
void store(StorerT &storer) const {
storer.store_int(version);
storer.store_string(prime);
storer.store_int(g);
}
template <class ParserT>
void parse(ParserT &parser) {
version = parser.fetch_int();
prime = parser.template fetch_string<std::string>();
g = parser.fetch_int();
}
};
} // namespace td
|