parse_http_request.inl

来自「ace开发环境 用来开发网络程序 其运用了设计模式、多平台、C++等多种知识」· INL 代码 · 共 50 行

INL
50
字号
// -*- c++ -*-// $Id: parse_http_request.inl 73790 2006-07-27 20:43:46Z wotte $#if !defined (ACE_HAS_INLINED_OSCALLS)# undef ACE_INLINE# define ACE_INLINE#endif /* ACE_HAS_INLINED_OSCALLS */ACE_INLINE intParse_HTTP_Request::method (void) const{  return (int) *this->method_;}ACE_INLINE const char *Parse_HTTP_Request::method_str (void) const{  return (const char *) *this->method_;}ACE_INLINE intParse_HTTP_Request::major_version (void) const{  return this->major_version_;}ACE_INLINE intParse_HTTP_Request::minor_version (void) const{  return this->minor_version_;}ACE_INLINE const char *Parse_HTTP_Request::version (void) const{  return this->version_ ? this->version_ : "HTTP/0.9";}ACE_INLINE const char *Parse_HTTP_Request::url (void) const{  return this->url_;}ACE_INLINE intParse_HTTP_Request::error (void) const{  return this->error_;}

⌨️ 快捷键说明

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