本文整理汇总了C++中Endpoint::getProtocol方法的典型用法代码示例。如果您正苦于以下问题:C++ Endpoint::getProtocol方法的具体用法?C++ Endpoint::getProtocol怎么用?C++ Endpoint::getProtocol使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Endpoint
的用法示例。
在下文中一共展示了Endpoint::getProtocol方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: httpEndpoint
bool ApplicationEndpointServer::parsePhase2 (ProgramOptions& options) {
// create the ssl context (if possible)
bool ok = createSslContext();
if (! ok) {
return false;
}
if (_backlogSize <= 0 || _backlogSize > SOMAXCONN) {
LOGGER_FATAL_AND_EXIT("invalid value for --server.backlog-size. maximum allowed value is " << SOMAXCONN);
}
if (_httpPort != "") {
// issue #175: add hidden option --server.http-port for downwards-compatibility
string httpEndpoint("tcp://" + _httpPort);
_endpoints.push_back(httpEndpoint);
}
OperationMode::server_operation_mode_e mode = OperationMode::determineMode(options);
if (_endpoints.empty() && mode == OperationMode::MODE_SERVER) {
LOGGER_INFO("please use the '--server.endpoint' option");
LOGGER_FATAL_AND_EXIT("no endpoint has been specified, giving up");
}
// add & validate endpoints
for (vector<string>::const_iterator i = _endpoints.begin(); i != _endpoints.end(); ++i) {
Endpoint* endpoint = Endpoint::serverFactory(*i, _backlogSize);
if (endpoint == 0) {
LOGGER_FATAL_AND_EXIT("invalid endpoint '" << *i << "'");
}
assert(endpoint);
bool ok = _endpointList.addEndpoint(endpoint->getProtocol(), endpoint->getEncryption(), endpoint);
if (! ok) {
LOGGER_FATAL_AND_EXIT("invalid endpoint '" << *i << "'");
}
}
// dump used endpoints for user information
_endpointList.dump();
// and return
return true;
}