Cleanup ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE, all platforms support it so far as I can...
[ACE_TAO.git] / ACE / apps / JAWS2 / HTTPU / parse_http_response.inl
bloba077f06aab75d7aab8fc0368bc5ec24630884241
1 // -*- c++ -*-
2 #if !defined (ACE_HAS_INLINED_OSCALLS)
3 # undef ACE_INLINE
4 # define ACE_INLINE
5 #endif /* ACE_HAS_INLINED_OSCALLS */
7 ACE_INLINE int
8 Parse_HTTP_Response::code () const
10   return this->code_;
13 ACE_INLINE const char *
14 Parse_HTTP_Response::code_str () const
16   return this->code_str_ ? this->code_str_ : "200";
19 ACE_INLINE int
20 Parse_HTTP_Response::major_version () const
22   return this->major_version_;
25 ACE_INLINE int
26 Parse_HTTP_Response::minor_version () const
28   return this->minor_version_;
31 ACE_INLINE const char *
32 Parse_HTTP_Response::version () const
34   return this->version_ ? this->version_ : "HTTP/0.9";
37 ACE_INLINE int
38 Parse_HTTP_Response::error () const
40   return this->error_;