aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/command_parser_executor.cpp
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2019-01-18 00:55:55 +0000
committerxiphon <xiphon@protonmail.com>2019-01-18 01:32:18 +0000
commitd294a577faa11910985920f1e70a39398e53d82d (patch)
tree8e5b459057e42c70c7ee7e21f4db796c386deb8e /src/daemon/command_parser_executor.cpp
parentMerge pull request #4902 (diff)
downloadmonero-d294a577faa11910985920f1e70a39398e53d82d.tar.xz
daemon: extend 'print_pl' command, optional filter by type and limit
Diffstat (limited to '')
-rw-r--r--src/daemon/command_parser_executor.cpp29
1 files changed, 27 insertions, 2 deletions
diff --git a/src/daemon/command_parser_executor.cpp b/src/daemon/command_parser_executor.cpp
index 853cde9c3..d31a6507e 100644
--- a/src/daemon/command_parser_executor.cpp
+++ b/src/daemon/command_parser_executor.cpp
@@ -48,9 +48,34 @@ t_command_parser_executor::t_command_parser_executor(
bool t_command_parser_executor::print_peer_list(const std::vector<std::string>& args)
{
- if (!args.empty()) return false;
+ if (args.size() > 3)
+ {
+ std::cout << "use: print_pl [white] [gray] [<limit>]" << std::endl;
+ return true;
+ }
+
+ bool white = false;
+ bool gray = false;
+ size_t limit = 0;
+ for (size_t i = 0; i < args.size(); ++i)
+ {
+ if (args[i] == "white")
+ {
+ white = true;
+ }
+ else if (args[i] == "gray")
+ {
+ gray = true;
+ }
+ else if (!epee::string_tools::get_xtype_from_string(limit, args[i]))
+ {
+ std::cout << "unexpected argument: " << args[i] << std::endl;
+ return true;
+ }
+ }
- return m_executor.print_peer_list();
+ const bool print_both = !white && !gray;
+ return m_executor.print_peer_list(white | print_both, gray | print_both, limit);
}
bool t_command_parser_executor::print_peer_list_stats(const std::vector<std::string>& args)