加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
argument.hpp 487 Bytes
一键复制 编辑 原始数据 按行查看 历史
#pragma once
#include <string>
namespace phosphor::certs
{
struct Arguments
{
std::string typeStr; // certificate type
std::string endpoint; // d-bus endpoint
std::string path; // certificate file path
std::string unit; // Optional systemd unit need to reload
};
// Validates all |argv| is valid and set corresponding attributes in
// |arguments|.
int processArguments(int argc, const char* const* argv, Arguments& arguments);
} // namespace phosphor::certs
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化