summaryrefslogtreecommitdiff
path: root/config/include/hwd/config.h
blob: 7f42cb5f928b7eda924f792cedb967c4a5e624ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

namespace hwd
{
namespace config
{

constexpr int default_port = 4236;
constexpr const char * default_host = "127.0.0.1";

constexpr const char * port_variable = "HWDPORT";
constexpr const char * host_variable = "HWDHOST";

int port();
const char * host();

}  // namespace config
}  // namespace hwd