📄 parse_http_response.i
字号:
// -*- c++ -*-
// parse_http_response.i,v 1.1 2000/04/27 23:43:18 jxh Exp
#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 + -