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

📄 http_base.i

📁 ACE自适配通信环境(ADAPTIVE Communication Environment)是可以自由使用、开放源码的面向对象(OO)框架(Framework)
💻 I
字号:
// -*- c++ -*-// http_base.i,v 1.1 2000/04/27 23:43:17 jxh Exp#if !defined (ACE_HAS_INLINED_OSCALLS)# undef ACE_INLINE# define ACE_INLINE#endif /* ACE_HAS_INLINED_OSCALLS */ACE_INLINEHTTP_Base::HTTP_Base (void)  : status_ (200),    line_ (0),    deliver_state_ (0),    no_headers_ (0),    iter_ (*(this->info_.table ())),    mb_ (0){}ACE_INLINEHTTP_Base::~HTTP_Base (void){  if (this->line_)    ACE_OS::free (this->line_);  if (this->mb_)    delete this->mb_;  this->line_ = 0;  this->mb_ = 0;}ACE_INLINE intHTTP_Base::status (void) const{  return this->status_;}ACE_INLINE const char *HTTP_Base::line (void) const{  return this->line_;}ACE_INLINE HTTP_Headers *HTTP_Base::http_headers (void){  return &(this->info_);}ACE_INLINE JAWS_Headers *HTTP_Base::headers (void){  return this->info_.table ();}

⌨️ 快捷键说明

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