summaryrefslogtreecommitdiff
path: root/ACE/apps/JAWS2/HTTPU/parse_http_request.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/JAWS2/HTTPU/parse_http_request.inl')
-rw-r--r--ACE/apps/JAWS2/HTTPU/parse_http_request.inl49
1 files changed, 49 insertions, 0 deletions
diff --git a/ACE/apps/JAWS2/HTTPU/parse_http_request.inl b/ACE/apps/JAWS2/HTTPU/parse_http_request.inl
new file mode 100644
index 00000000000..3ef87d48479
--- /dev/null
+++ b/ACE/apps/JAWS2/HTTPU/parse_http_request.inl
@@ -0,0 +1,49 @@
+// -*- c++ -*-
+// $Id$
+
+#if !defined (ACE_HAS_INLINED_OSCALLS)
+# undef ACE_INLINE
+# define ACE_INLINE
+#endif /* ACE_HAS_INLINED_OSCALLS */
+
+ACE_INLINE int
+Parse_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 int
+Parse_HTTP_Request::major_version (void) const
+{
+ return this->major_version_;
+}
+
+ACE_INLINE int
+Parse_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 int
+Parse_HTTP_Request::error (void) const
+{
+ return this->error_;
+}