summaryrefslogtreecommitdiff
path: root/apps/JAWS/PROTOTYPE/HTTPU/http_response.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/JAWS/PROTOTYPE/HTTPU/http_response.h')
-rw-r--r--apps/JAWS/PROTOTYPE/HTTPU/http_response.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/apps/JAWS/PROTOTYPE/HTTPU/http_response.h b/apps/JAWS/PROTOTYPE/HTTPU/http_response.h
deleted file mode 100644
index cd3a44a4c06..00000000000
--- a/apps/JAWS/PROTOTYPE/HTTPU/http_response.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// $Id$
-
-// There are two kinds of HTTP Responses in a proxy.
-// One is the kind you have to read in from the HTTP server.
-// The other is the kind you issue to the HTTP client.
-
-#if !defined (HTTPU_HTTP_RESPONSE_HPP)
-#define HTTPU_HTTP_RESPONSE_HPP
-
-#include "ace/Message_Block.h"
-#include "JAWS/Parse_Headers.h"
-
-#include "HTTPU/http_base.h"
-#include "HTTPU/parse_http_response.h"
-
-class HTTP_Response : public HTTP_Base
-{
-public:
- HTTP_Response (void) {}
- ~HTTP_Response (void) {}
-
- Parse_HTTP_Response *response_line (void)
- { return &(this->response_); }
- // Returns the parsed response line.
-
- void dump (void);
-
-protected:
-
- virtual void parse_line (void);
- virtual int espouse_line (void);
-
-private:
- Parse_HTTP_Response response_;
-};
-
-#endif /* !defined (HTTPU_HTTP_RESPONSE_HPP) */