2 #if !defined (ACE_HAS_INLINED_OSCALLS)
5 #endif /* ACE_HAS_INLINED_OSCALLS */
8 HTTP_Hdr_Node::operator int () const
14 HTTP_Hdr_Node::operator const char * () const
19 ACE_INLINE const char *
20 HTTP_Hdr_Node::format () const
25 ACE_INLINE const HTTP_Hdr_Node &
26 HTTP_HCodes::hcode (int type) const
28 const HTTP_Hdr_Node **hn = this->header_nodes_->find (type);
34 ACE_INLINE const char *
35 HTTP_Headers::header_token (int name) const
37 const HTTP_Hdr_Node **hn = this->header_nodes_->find (name);
38 return ((hn && *hn) ? (const char *)**hn : 0);
41 ACE_INLINE const char *
42 HTTP_Headers::header_strings (int name) const
44 const HTTP_Hdr_Node **hn = this->header_nodes_->find (name);
45 return ((hn && *hn) ? (*hn)->format () : 0);