summaryrefslogtreecommitdiff
path: root/apps/JAWS2/HTTPU/parse_http_request.i
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
commit3df4acfa816441fc28a95dee6d0191a927145d95 (patch)
treeb5ae7ca44662cfd8e5c95f1826e4406021a606f5 /apps/JAWS2/HTTPU/parse_http_request.i
parent60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff)
downloadATCD-pre-subset.tar.gz
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'apps/JAWS2/HTTPU/parse_http_request.i')
-rw-r--r--apps/JAWS2/HTTPU/parse_http_request.i49
1 files changed, 0 insertions, 49 deletions
diff --git a/apps/JAWS2/HTTPU/parse_http_request.i b/apps/JAWS2/HTTPU/parse_http_request.i
deleted file mode 100644
index 3ef87d48479..00000000000
--- a/apps/JAWS2/HTTPU/parse_http_request.i
+++ /dev/null
@@ -1,49 +0,0 @@
-// -*- 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_;
-}