mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-12 14:37:50 +00:00
62 lines
1.9 KiB
C++
62 lines
1.9 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
#ifndef _nsIHTTPHandler_h_
|
|
#define _nsIHTTPHandler_h_
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#ifndef nsIURL
|
|
#define nsIURL nsIUrl // style compatibility hacks... will clean later.
|
|
#endif
|
|
/*
|
|
The nsIHTTPHandler class is the bare minimum interface expected for
|
|
an HTTP handler. The set of interfaces this handler is derived from decides
|
|
the expected behaviour. For example another HTTPHandler may decide
|
|
not to use proxies or to support proxy connections, in which case
|
|
it will not derive from nsIProxy.
|
|
|
|
-Gagan Saksena 02/25/99
|
|
*/
|
|
|
|
class nsIHTTPHandler : public nsISupports//, public nsIProxy
|
|
// TODO should also have caching interfaces
|
|
// as well as security stuff, etc.
|
|
{
|
|
|
|
public:
|
|
|
|
static const nsIID& GetIID() {
|
|
// {A3BE3AF0-CD2D-11d2-B013-006097BFC036}
|
|
static const nsIID NS_IHTTPHandler_IID =
|
|
{ 0xa3be3af0, 0xcd2d, 0x11d2, { 0xb0, 0x13, 0x0, 0x60, 0x97, 0xbf, 0xc0, 0x36 } };
|
|
return NS_IHTTPHandler_IID;
|
|
};
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
//Possible errors
|
|
#define NS_ERROR_BAD_REQUEST NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 200);
|
|
|
|
// Create (or get) HTTP Handler
|
|
extern NS_METHOD CreateOrGetHTTPHandler(nsIHTTPHandler* *o_HTTPHandler);
|
|
|
|
#endif /* _nsIHTTPHandler_h_ */
|