Cleanup ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE, all platforms support it so far as I can...
[ACE_TAO.git] / ACE / apps / JAWS2 / HTTPU / parse_http_request.inl
blobb0cdf59e5e5d89317064881e4dfc40fd5e127199
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_Request::method () const
10   return (int) *this->method_;
13 ACE_INLINE const char *
14 Parse_HTTP_Request::method_str () const
16   return (const char *) *this->method_;
19 ACE_INLINE int
20 Parse_HTTP_Request::major_version () const
22   return this->major_version_;
25 ACE_INLINE int
26 Parse_HTTP_Request::minor_version () const
28   return this->minor_version_;
31 ACE_INLINE const char *
32 Parse_HTTP_Request::version () const
34   return this->version_ ? this->version_ : "HTTP/0.9";
37 ACE_INLINE const char *
38 Parse_HTTP_Request::url () const
40   return this->url_;
43 ACE_INLINE int
44 Parse_HTTP_Request::error () const
46   return this->error_;