当前位置: 首页>>代码示例>>C++>>正文


C++ Method::get_name_len方法代码示例

本文整理汇总了C++中Method::get_name_len方法的典型用法代码示例。如果您正苦于以下问题:C++ Method::get_name_len方法的具体用法?C++ Method::get_name_len怎么用?C++ Method::get_name_len使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Method的用法示例。


在下文中一共展示了Method::get_name_len方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: method

HttpRequest::HttpRequest(
  Method method,
  const yield::uri::Uri& uri,
  YO_NEW_REF Object* body,
  uint8_t http_version
)
  : HttpMessage<HttpRequest>(body, http_version),
    method(method),
    uri(uri) {
  get_header().put(method.get_name(), method.get_name_len());

  get_header().put(' ');

  iovec uri_path;
  uri.get_path(uri_path);
  get_header().put(uri_path);

  if (http_version == 0) {
    get_header().put(" HTTP/1.0\r\n", 11);
  } else {
    get_header().put(" HTTP/1.1\r\n", 11);
  }

  set_fields_offset(static_cast<uint16_t>(get_header().size()));

  if (uri.has_host()) {
    iovec uri_host;
    uri.get_host(uri_host);
    if (uri.get_port() == 80) {
      set_field("Host", 4, uri_host);
    } else {
      const char* uri_port_p
      = static_cast<char*>(uri_host.iov_base) + uri_host.iov_len;
      if (
        uri_port_p >= static_cast<char*>(uri_path.iov_base) - 6
        &&
        uri_port_p < uri_path.iov_base
        &&
        *uri_port_p == ':'
      ) {
        const char* uri_port_ps = uri_port_p;
        uri_port_p++;
        while (uri_port_p < uri_path.iov_base && isdigit(*uri_port_p)) {
          uri_port_p++;
        }
        uri_host.iov_len += uri_port_p - uri_port_ps;

        set_field("Host", 4, uri_host);
      } else {
        std::ostringstream host;
        host.write(
          static_cast<char*>(uri_host.iov_base),
          uri_host.iov_len
        );
        host << ':';
        host << uri.get_port();

        set_field("Host", 4, host.str());
      }
    }
  }
}
开发者ID:respu,项目名称:yield,代码行数:62,代码来源:http_request.cpp


注:本文中的Method::get_name_len方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。