⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 parse_http_response.inl

📁 最新的版本ACE-5.6.8,刚从外文网上搬下,与大家分享.
💻 INL
字号:
// -*- c++ -*-
// $Id: parse_http_response.inl 80826 2008-03-04 14:51:23Z wotte $

#if !defined (ACE_HAS_INLINED_OSCALLS)
# undef ACE_INLINE
# define ACE_INLINE
#endif /* ACE_HAS_INLINED_OSCALLS */

ACE_INLINE int
Parse_HTTP_Response::code (void) const
{
  return this->code_;
}

ACE_INLINE const char *
Parse_HTTP_Response::code_str (void) const
{
  return this->code_str_ ? this->code_str_ : "200";
}

ACE_INLINE int
Parse_HTTP_Response::major_version (void) const
{
  return this->major_version_;
}

ACE_INLINE int
Parse_HTTP_Response::minor_version (void) const
{
  return this->minor_version_;
}

ACE_INLINE const char *
Parse_HTTP_Response::version (void) const
{
  return this->version_ ? this->version_ : "HTTP/0.9";
}

ACE_INLINE int
Parse_HTTP_Response::error (void) const
{
  return this->error_;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -