mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-09-05 22:32:55 +02:00
10 lines
No EOL
556 B
C++
10 lines
No EOL
556 B
C++
#pragma once
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <map>
|
|
#include "node/InetAddress.hpp"
|
|
|
|
void dumpStatus(std::stringstream& dump, const ZeroTier::InetAddress& addr, std::map<std::string,std::string>& requestHeaders);
|
|
void dumpNetworks(std::stringstream& dump, const ZeroTier::InetAddress& addr, std::map<std::string,std::string>& requestHeaders);
|
|
void dumpPeers(std::stringstream& dump, const ZeroTier::InetAddress& addr, std::map<std::string,std::string>& requestHeaders);
|
|
void dumpLocalConf(std::stringstream& dump, const std::string& homeDir);
|