71 lines
1.9 KiB
C
71 lines
1.9 KiB
C
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
#ifndef _nsHTTPEnums_h_
|
|
#define _nsHTTPEnums_h_
|
|
|
|
typedef enum {
|
|
HM_DELETE,
|
|
HM_GET,
|
|
HM_HEAD,
|
|
HM_INDEX,
|
|
HM_LINK,
|
|
HM_OPTIONS,
|
|
HM_POST,
|
|
HM_PUT,
|
|
HM_PATCH,
|
|
HM_TRACE,
|
|
HM_UNLINK,
|
|
TOTAL_NUMBER_OF_METHODS // Always the last
|
|
} HTTPMethod;
|
|
|
|
/*
|
|
HTTP States.
|
|
*/
|
|
typedef enum
|
|
{
|
|
// The initial stage when a connection is set up
|
|
// For pipelining we repeat from here
|
|
HS_IDLE,
|
|
// A temporarily suspended state.
|
|
HS_SUSPENDED,
|
|
// The request has been built. Now just waiting for Open-- final call that connects.
|
|
HS_WAITING_FOR_OPEN,
|
|
// Encountered a problem or a situation that requires user input.
|
|
HS_WAITING_FOR_USER_INPUT,
|
|
// Waiting for a connection to go thru.
|
|
HS_WAITING_FOR_TRANSPORT,
|
|
// Connected and now waiting for response.
|
|
HS_WAITING_FOR_RESPONSE,
|
|
// Done
|
|
HS_DONE
|
|
} HTTPState;
|
|
|
|
typedef enum {
|
|
HTTP_UNKNOWN,
|
|
HTTP_ZERO_NINE, // HTTP/0.9
|
|
HTTP_ONE_ZERO, // HTTP/1.0
|
|
HTTP_ONE_ONE // HTTP/1.1
|
|
} HTTPVersion;
|
|
|
|
#endif //_knsHTTPEnumss_h_
|