summaryrefslogtreecommitdiffstats
path: root/config/src/apps/configproxy-cmd/flags.h
blob: ce64889256b4449b3b4a1832b648fc85aef6b6b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/vespalib/stllike/string.h>
#include <vector>

struct Flags {
    vespalib::string method;
    std::vector<vespalib::string> args;
    vespalib::string hostname;
    int portnumber;
    Flags() : method("cache"), args(), hostname("localhost"), portnumber(19090) {}
};