12
12
#include < boost/beast.hpp>
13
13
14
14
#include < libp2p/basic/write_return_size.hpp>
15
- #include < libp2p/common/hexutil .hpp>
15
+ #include < libp2p/common/literals .hpp>
16
16
#include < libp2p/injector/kademlia_injector.hpp>
17
17
#include < libp2p/log/configurator.hpp>
18
18
#include < libp2p/log/sublogger.hpp>
19
19
#include < libp2p/multi/content_identifier_codec.hpp>
20
20
21
+ using libp2p::common::operator " " _unhex;
22
+
21
23
class Session ;
22
24
23
25
struct Cmp {
@@ -46,7 +48,7 @@ class Session : public std::enable_shared_from_this<Session> {
46
48
stream_->readSome (
47
49
*incoming_,
48
50
incoming_->size (),
49
- [self = shared_from_this ()](libp2p:: outcome::result<size_t > result) {
51
+ [self = shared_from_this ()](outcome::result<size_t > result) {
50
52
if (not result) {
51
53
self->close ();
52
54
std::cout << self->stream_ ->remotePeerId ().value ().toBase58 ()
@@ -71,8 +73,7 @@ class Session : public std::enable_shared_from_this<Session> {
71
73
libp2p::writeReturnSize (
72
74
stream_,
73
75
*buffer,
74
- [self = shared_from_this (),
75
- buffer](libp2p::outcome::result<size_t > result) {
76
+ [self = shared_from_this (), buffer](outcome::result<size_t > result) {
76
77
if (not result) {
77
78
self->close ();
78
79
std::cout << self->stream_ ->remotePeerId ().value ().toBase58 ()
@@ -129,8 +130,8 @@ void handleIncomingStream(libp2p::StreamAndProtocol stream_and_protocol) {
129
130
130
131
void handleOutgoingStream (libp2p::StreamAndProtocolOrError stream_res) {
131
132
if (not stream_res) {
132
- std::cerr << " ! outgoing connection failed: "
133
- << stream_res.error (). message () << std::endl ;
133
+ fmt::println (
134
+ std::cerr, " ! outgoing connection failed: {} " , stream_res.error ()) ;
134
135
return ;
135
136
}
136
137
auto &stream = stream_res.value ().stream ;
@@ -198,11 +199,11 @@ int main(int argc, char *argv[]) {
198
199
// clang-format off
199
200
.publicKey = {{
200
201
.type = libp2p::crypto::Key::Type::Ed25519,
201
- .data = libp2p::common::unhex ( " 48453469c62f4885373099421a7365520b5ffb0d93726c124166be4b81d852e6" ). value ()
202
+ .data = " 48453469c62f4885373099421a7365520b5ffb0d93726c124166be4b81d852e6" _unhex,
202
203
}},
203
204
.privateKey = {{
204
205
.type = libp2p::crypto::Key::Type::Ed25519,
205
- .data = libp2p::common::unhex ( " 4a9361c525840f7086b893d584ebbe475b4ec7069951d2e897e8bceb0a3f35ce" ). value ()
206
+ .data = " 4a9361c525840f7086b893d584ebbe475b4ec7069951d2e897e8bceb0a3f35ce" _unhex,
206
207
}},
207
208
// clang-format on
208
209
};
@@ -291,14 +292,12 @@ int main(int argc, char *argv[]) {
291
292
[[maybe_unused]] auto res1 = kademlia->findProviders (
292
293
content_id,
293
294
0 ,
294
- [&](libp2p::outcome::result<std::vector<libp2p::peer::PeerInfo>>
295
- res) {
295
+ [&](outcome::result<std::vector<libp2p::peer::PeerInfo>> res) {
296
296
scheduler.schedule (std::function{find_providers},
297
297
kademlia_config.randomWalk .interval );
298
298
299
299
if (not res) {
300
- std::cerr << " Cannot find providers: " << res.error ().message ()
301
- << std::endl;
300
+ fmt::println (std::cerr, " Cannot find providers: {}" , res.error ());
302
301
return ;
303
302
}
304
303
@@ -320,8 +319,10 @@ int main(int argc, char *argv[]) {
320
319
io->post ([&] {
321
320
auto listen = host->listen (ma);
322
321
if (not listen) {
323
- std::cerr << " Cannot listen address " << ma.getStringAddress ().data ()
324
- << " . Error: " << listen.error ().message () << std::endl;
322
+ fmt::println (std::cerr,
323
+ " Cannot listen address {}. Error: {}" ,
324
+ ma.getStringAddress (),
325
+ listen.error ());
325
326
std::exit (EXIT_FAILURE);
326
327
}
327
328
0 commit comments